mirror of
https://github.com/He4eT/simple-tads-game.git
synced 2026-05-04 17:07:24 +00:00
Add endgame buttons
This commit is contained in:
parent
f17409cc53
commit
e2af59c9ba
1 changed files with 24 additions and 0 deletions
|
|
@ -6,3 +6,27 @@ island: OutdoorRoom 'Strange Island'
|
||||||
The air hummed with an electric tension,
|
The air hummed with an electric tension,
|
||||||
as if the island held an ancient secret waiting to be discovered. "
|
as if the island held an ancient secret waiting to be discovered. "
|
||||||
;
|
;
|
||||||
|
|
||||||
|
+ Button, Immovable
|
||||||
|
'green button*buttons'
|
||||||
|
'green button'
|
||||||
|
"Win Button"
|
||||||
|
dobjFor(Push) {
|
||||||
|
action() {
|
||||||
|
finishGameMsg(ftVictory, [finishOptionUndo]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
isListed = true
|
||||||
|
;
|
||||||
|
|
||||||
|
+ Button, Immovable
|
||||||
|
'red button*buttons'
|
||||||
|
'red button'
|
||||||
|
"Loose Button"
|
||||||
|
dobjFor(Push) {
|
||||||
|
action() {
|
||||||
|
finishGameMsg(ftDeath, [finishOptionUndo]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
isListed = true
|
||||||
|
;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue