Hi! Welcome to FILLIU, a game about being a wolf.
Still in development!
[[Start|Opening]]
[[Credits]]Before we start:
What should we call you?
(input: bind $name)
This game will contain...
(checkbox: 2bind $showPiss, "Urine")
(checkbox: 2bind $showScat, "Feces")
(checkbox: 2bind $showGore, "Gore")
{(link-reveal-goto: "Den")
[
(set: $time to 5.5)
(set: $status to (a:))
(set: $stomach to (a:))
(set: $kidneys to 0)
(set: $bladder to 0)
(set: $bowels to 0)
(set: $hunger to 50)
(set: $thirst to 50)
(set: $health to 100)
(set: $alertness to 100)
]}This game is made by Tir-Far-Thoinn.<br>
I can be found on Noterook, and some other social medias I don't care to mention.
You wake up in your den, feeling refreshed.
[[Explore the River|River]]
[[Explore the Forest|Forest]]
[[Explore the Meadow|Meadow]]{
(set: $showPiss to true)
(set: $showScat to true)
(set: $showGore to true)
(set: $bladder to 0)
}{(if: (passage:)'s tags contains "explore")[
The time is (print:
(a:
"00:00", "00:30",
"01:00", "01:30",
"02:00", "02:30",
"03:00", "03:30",
"04:00", "04:30",
"05:00", "05:30",
"06:00", "06:30",
"07:00", "07:30",
"08:00", "08:30",
"09:00", "09:30",
"10:00", "10:30",
"11:00", "11:30",
"12:00", "12:30",
"13:00", "13:30",
"14:00", "14:30",
"15:00", "15:30",
"16:00", "16:30",
"17:00", "17:30",
"18:00", "18:30",
"19:00", "19:30",
"20:00", "20:30",
"21:00", "21:30",
"22:00", "22:30",
"23:00", "23:30"
)'s (($time*2)+1))<br>
(print: $status)
]}{(set: _locale to $river's random)}
(print:_locale's desc)
{(link-reveal: "Drink from the River")[(alert:[You gulp down some of the flowing river water & feel refreshed], "Splash!") (set:$bladder to it + $thirst)(set: $thirst to 0)]<br>}{(set: _locale to $forest's random)}
(print:_locale's desc)
{(set: _locale to $meadow's random)}
(print:_locale's desc)
(if: $alertness is >= 10)[(link-reveal: "Frolic in the Meadow")[(alert:[You frolic in the long grass! You see flowers and butterflies and bugs], "Yippee!") (set: $alertness to it -10)]]
(else:)[You feel too tired to play.]{(if: (passage:)'s tags contains "explore")[
(if: $bladder is > 10 and _locale's marked is not true)
[(link-reveal: "Mark your Territory")[(alert:[You find a nearby (print:(_locale's features's random)) and raise your hind leg. Before long, a stream of golden liquid stains it and pools around its base.], "Mine now!")(set:$bladder to it - 10)(set:_locale's marked to true)(set:_locale's smells to it + (a:"<br>This place smells like $name. That's you!"))]]<br>
(link-reveal: "Sniff About")[(alert:[You can smell (print:_locale's smells's length) smells.
(print:_locale's smells)], "Sniff sniff...")]<br>
[[Return to your Den|Den]]<br>
]}Soph, when you're tired in the morning and can't remember what you wanted to do:
1. You need 4 sets of "Events"
2. They get randomised and selected for the exploration
3. You need to unlock Forest River Meadow
4. You can always sniff somehwere to learn stuff
{
(set: $river to (a:
(dm:
"name", "Rapids",
"desc", "You find a section of the river where the water runs fast and white.",
"smells", (a:),
"marked", false,
"features", (a:"boulder", "cairn")
),
(dm:
"name", "Stagnant Pond",
"desc", "Here, an offshoot of the river has trickled to a halt, filling a small pool with water. It's still, and frogs scuttle too and fro.",
"smells", (a: "<br>- Stagnant water. It's enough to make you retch"),
"marked", false,
"features", (a:"cattail patch", "hollow log")
)
))
}{
(set: $forest to (a:
(dm:
"name", "Clearing",
"desc", "On your travels through the forest, you stumble across a clearing. You wonder why no trees grow here.",
"smells", (a:),
"marked", false,
"features", (a:"patch of moss", "hollow log", "fallen log")
),
(dm:
"name", "Pine Woods",
"desc", "Huge pine trees grow tall here, much higher than you can imagine.. I wonder if heaven is up there?",
"smells", (a: "<br>- Resinous Pine Sap"),
"marked", false,
"features", (a:"pine tree", "fallen log")
)
))
}{
(set: $meadow to (a:
(dm:
"name", "Poppy Field",
"desc", "You find a field of poppies, all manner of shades and hues of red and purple",
"smells", (a: "<br>- Intoxicating Poppies."),
"marked", false,
"features", (a: "patricularly sturdy poppy")
),
(dm:
"name", "Field of Grain",
"desc", "Great golden stalks rise up from this field, with large seeds on. A flock of Rooks are gathered, munching at the stalks. You wonder how the plant does so well when all its seeds are eaten.",
"smells", (a:),
"marked", false,
"features", (a:"hay bale")
)
))
}