Skip to content
Snippets Groups Projects
Commit 57849f23 authored by Jimmys's avatar Jimmys Committed by Vrelnir
Browse files

Create barn options during farm navigation

parent d4c07d82
No related branches found
No related tags found
1 merge request!934Create barn options during farm navigation
......@@ -908,11 +908,6 @@ You've pushed yourself too much. You pass out.
<<elseif $farm_work.cattle_out lt 2 and _farm_work_time gte 36>>
<<link [[Herd the cattle into their barn (0:20)|Farm Cattle In]]>><<farm_count 20>><<pass 20>><<set $farm_work.cattle_out to 2>><</link>><<run _actions++>>
<br>
<<elseif $farm.milking isnot undefined>>
<<if $farm.milking.dayMilking is true>>
<<link [[Enter the barn|Farm Cattle Milk]]>><</link>>
<br>
<</if>>
<</if>>
<<if $farm_work.dogs_panic gte 1>>
<<link [[Calm the dogs (0:20)|Farm Dogs Calm]]>><<farm_count 20>><<pass 20>><</link>><<tendingdifficulty 1 700>><<run _actions++>>
......
......@@ -625,10 +625,19 @@ You are on Alex's farm. A rustic farmhouse overlooks a yard and chicken coop. Ot
<<link [[Take shower (0:10)|Farm Shower]]>><<pass 10>><</link>>
<br>
<</if>>
/* Go to farm barn passage if outside of farming hours, go to cattle milking passage otherwise. */
<<if $hour lte 5 or $hour gte 22 or ($hour is 21 and $farm_end is 1)>>
<<link [[Sneak into the barn (0:05)|Farm Barn]]>><<pass 5>><</link>>
<br>
/* Determine whether you can access the barn normally with Alex's consent. */
<<if $farm.milking isnot undefined and $farm.milking.dayMilking>>
<<link [[Barn (0:02)|Farm Barn]]>><<pass 2>><</link>>
<<else>>
<<link [[Sneak into the barn (0:05)|Farm Barn]]>><<pass 5>><</link>>
<</if>>
<<else>>
<<link [[Barn (0:02)|Farm Cattle Milk]]>><<pass 2>><</link>>
<</if>>
<br>
<</if>>
<<if $farm_stage gte 9>>
<<link [[Lab (0:01)|Farm Still]]>><<pass 1>><</link>>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment