lib/gemwarrior/entities/items/feather.rb in gemwarrior-0.15.8 vs lib/gemwarrior/entities/items/feather.rb in gemwarrior-0.15.9
- old
+ new
@@ -11,7 +11,12 @@
self.name = 'feather'
self.name_display = 'Feather'
self.description = 'A blue and green feather. It is soft and tender, unlike the craven bird that probably shed it.'
self.takeable = true
end
+
+ def use(world)
+ puts 'Soft to the touch, you wonder what it could be used before besides temporary comfort.'
+ { type: nil, data: nil }
+ end
end
end