Sha256: 08edc8f6fb82041c01249651a99e8c12b9901fe1831379a61d4f16ae5f950a72

Contents?: true

Size: 617 Bytes

Versions: 11

Compression:

Stored size: 617 Bytes

Contents

action score: score
action inventory: inventory
action look: look

room chamber "square chamber"
	exit east dungeon

item sign "Sign says: leave treasure here, then say SCORE"

room dungeon "gloomy dungeon"
	exit west chamber

item door "Locked door"

room cell "dungeon cell"
	exit north dungeon

item coin "*Gold coin*"
	called "coin"

item key "Brass key"
	called "key"
	at chamber

item door2 "Open door leads south"
	nowhere

action open door when here door and !present key
	print "It's locked."

action open door when here door
	swap door door2
	print OK
	look

action go door when here door2
	goto cell
	look

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
scottkit-1.6.0 games/tutorial/t3.sck
scottkit-1.5.0 data/tutorial/t3.sck
scottkit-1.4.0 data/tutorial/t3.sck
scottkit-1.3.0 data/tutorial/t3.sck
scottkit-1.2.0 data/tutorial/t3.sck
scottkit-1.1.0 data/tutorial/t3.sck
scottkit-1.0.0 data/tutorial/t3.sck
scottkit-0.4.0 data/tutorial/t3.sck
scottkit-0.2.0 data/tutorial/t3.sck
scottkit-0.1.0 data/tutorial/t3.sck
scottkit-0.0.0 data/tutorial/t3.sck