lib/gemwarrior/entities/items/keystone.rb in gemwarrior-0.15.8 vs lib/gemwarrior/entities/items/keystone.rb in gemwarrior-0.15.9
- old
+ new
@@ -11,7 +11,12 @@
self.name = 'keystone'
self.name_display = 'Keystone'
self.description = 'Certainly greater than the sum of its parts, this smallish stone glows faintly and feels slick to the touch.'
self.takeable = true
end
+
+ def use(world)
+ puts 'The keystone glows a bit brighter when you grasp it tightly.'
+ { type: nil, data: nil }
+ end
end
end