From 1b64942c26bd7197a118fd52643917137cd1e7a1 Mon Sep 17 00:00:00 2001 From: DCoded <dcoded@live.com> Date: Mon, 21 Jan 2019 23:34:17 -0500 Subject: [PATCH] Added prices to animals --- src/facilities/farmyard/farmyardAnimals.tw | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/facilities/farmyard/farmyardAnimals.tw b/src/facilities/farmyard/farmyardAnimals.tw index 6488ae6678e..97701b56c56 100644 --- a/src/facilities/farmyard/farmyardAnimals.tw +++ b/src/facilities/farmyard/farmyardAnimals.tw @@ -1,8 +1,5 @@ :: FarmyardAnimals [nobr] -/* TODO: add prices */ -/* TODO: these prices will definitely need to be adjusted */ - <<set $nextButton = "Back", $nextLink = "Farmyard", $returnTo = "FarmyardAnimals", $showEncyclopedia = 1, $encyclopedia = "Farmyard">> <<if $farmyardKennels > 0 || $farmyardStable > 0 || $farmyardCages > 0>> @@ -13,6 +10,7 @@ <<if $farmyardKennels > 0>> <br> Dogs: + <br>//Cost <<print cashFormat(20000)>> each// /* TODO: this number is mostly a placeholder, will need adjusting */ <br><br> <<if $animalsBought.labradorRetrievers == 0>> <<link "Purchase dogs" "FarmyardAnimals">><<set cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "farmyard"), $animalsBought.labradorRetrievers = 1, $animalsBought.canines += 1, $canines.push("Labrador Retrievers")>><</link>> @@ -141,6 +139,7 @@ <<if $farmyardStable > 0>> <br> Hooved Animals: + <br>//Cost <<print cashFormat(20000)>> each// /* TODO: this number is mostly a placeholder, will need adjusting */ <br><br> <<if $animalsBought.horses == 0>> <<link "Purchase horses" "FarmyardAnimals">><<set cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "farmyard"), $animalsBought.horses = 1, $animalsBought.hooved += 1, $hooved.push("horses")>><</link>> @@ -392,6 +391,7 @@ <<if $farmyardCages > 1>> <br> Felines + <br>//Cost <<print cashFormat(30000)>> each// /* TODO: this number is mostly a placeholder, will need adjusting */ <br><br> /* <<if $animalsBought.cougars == 0>> -- GitLab