work-it-out/story/main.ink

86 lines
2.0 KiB
Plaintext
Raw Normal View History

2024-08-31 16:44:23 +02:00
# author: Matteo Settenvini
2024-09-01 14:28:50 +02:00
VAR stat_assertiveness = 0
VAR stat_empathy = 0
2024-08-31 16:44:23 +02:00
2024-09-01 14:28:50 +02:00
-> disclaimer
=== disclaimer ===
This is a work of fiction. Names, characters, businesses, places, events, locales, and incidents are either the products of the authors imagination or used in a fictitious manner. Any resemblance to actual persons, living or dead, or actual events is purely coincidental. # CLASS: disclaimer
2024-08-31 16:44:23 +02:00
2024-09-01 14:28:50 +02:00
+ [Understood] # CLEAR: -> intro
2024-08-31 16:44:23 +02:00
2024-09-01 14:28:50 +02:00
=== intro ===
The alarm clock rings hell's bells.
2024-08-31 16:44:23 +02:00
2024-09-01 14:28:50 +02:00
* Be nice. -> ending
~ stat_empathy++
* Be naughty. -> ending
2024-08-31 16:44:23 +02:00
=== ending ===
2024-09-01 14:28:50 +02:00
You have reached the end.
{ print_stat("{~empathy|love}", stat_empathy) }
2024-08-31 16:44:23 +02:00
-> END
2024-09-01 14:28:50 +02:00
// ------------ HELPER functions ------------------
=== function print_stat(name, stat) ====
You {~have used|decided to employ} the power of {name} {print_num(stat)} time{stat != 1:s}.
=== function print_num(x) ===
{
- x >= 1000:
{print_num(x / 1000)} thousand { x mod 1000 > 0:{print_num(x mod 1000)}}
- x >= 100:
{print_num(x / 100)} hundred { x mod 100 > 0:and {print_num(x mod 100)}}
- x == 0:
zero
- else:
{ x >= 20:
{ x / 10:
- 2: twenty
- 3: thirty
- 4: forty
- 5: fifty
- 6: sixty
- 7: seventy
- 8: eighty
- 9: ninety
}
{ x mod 10 > 0:<>-<>}
}
{ x < 10 || x > 20:
{ x mod 10:
- 1: one
- 2: two
- 3: three
- 4: four
- 5: five
- 6: six
- 7: seven
- 8: eight
- 9: nine
}
- else:
{ x:
- 10: ten
- 11: eleven
- 12: twelve
- 13: thirteen
- 14: fourteen
- 15: fifteen
- 16: sixteen
- 17: seventeen
- 18: eighteen
- 19: nineteen
}
}
}