Sha256: 515472c2169a429a0d26c5821ca2e61a49e9761b0be4e2adddf4299b53cfff64
Contents?: true
Size: 1.48 KB
Versions: 1
Compression:
Stored size: 1.48 KB
Contents
Gamefic.script do respond :go, Use.siblings(Portal) do |actor, portal| if portal.destination.nil? actor.tell "That portal leads nowhere." else actor.parent = portal.destination if !portal.direction.nil? actor.tell "You go #{portal.direction}." end actor.execute :look end end respond :go, Use.text do |actor, text| if actor.parent == actor.room actor.tell "I don't see any way to go \"#{text} from here." else actor.execute :leave if actor.parent == actor.room actor.perform "go #{text}" else actor.proceed end end end respond :go, Use.available(Door) do |actor, door| actor.execute :open, door unless door.open? actor.proceed if door.open? end interpret "north", "go north" interpret "south", "go south" interpret "west", "go west" interpret "east", "go east" interpret "up", "go up" interpret "down", "go down" interpret "northwest", "go northwest" interpret "northeast", "go northeast" interpret "southwest", "go southwest" interpret "southeast", "go southeast" interpret "n", "go north" interpret "s", "go south" interpret "w", "go west" interpret "e", "go east" interpret "u", "go up" interpret "d", "go down" interpret "nw", "go northwest" interpret "ne", "go northeast" interpret "sw", "go southwest" interpret "se", "go southeast" interpret "go to :place", "go :place" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gamefic-standard-2.4.0 | lib/gamefic-standard/actions/go.rb |