class ItemLibrary::StoneWall

Represents a staple of DnD the concealed pit trap

Public Instance Methods

opaque?() click to toggle source
# File lib/natural_20/item_library/stone_wall.rb, line 4
def opaque?
  !dead?
end
passable?() click to toggle source
# File lib/natural_20/item_library/stone_wall.rb, line 8
def passable?
  dead?
end
token() click to toggle source
# File lib/natural_20/item_library/stone_wall.rb, line 12
def token
  return ['`'] if dead?

  ['#']
end