Skip to content
Snippets Groups Projects
Commit 91684a05 authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'farmyard-dev' into 'pregmod-master'

First-time effects in fAnimal, cleanup

See merge request !10950
parents ad361aba 463ecd24
No related branches found
No related tags found
1 merge request!10950First-time effects in fAnimal, cleanup
Pipeline #50392 passed
...@@ -203,7 +203,7 @@ App.Facilities.Farmyard.farmyard = class Farmyard extends App.Facilities.Facilit ...@@ -203,7 +203,7 @@ App.Facilities.Farmyard.farmyard = class Farmyard extends App.Facilities.Facilit
upgraded: 1, upgraded: 1,
text: `There is room enough in ${this.facility.name} to install a hydroponics system for irrigation.`, text: `There is room enough in ${this.facility.name} to install a hydroponics system for irrigation.`,
link: `Purchase an advanced hydroponics system`, link: `Purchase an advanced hydroponics system`,
cost: 20000 * V.upgradeMultiplierArcology, cost: 25000 * V.upgradeMultiplierArcology,
handler: () => { handler: () => {
V.PC.skill.engineering += 0.1; V.PC.skill.engineering += 0.1;
...@@ -231,7 +231,7 @@ App.Facilities.Farmyard.farmyard = class Farmyard extends App.Facilities.Facilit ...@@ -231,7 +231,7 @@ App.Facilities.Farmyard.farmyard = class Farmyard extends App.Facilities.Facilit
upgraded: 1, upgraded: 1,
text: `The seeds ${this.facility.name} is using are the standard seeds one could pick up at the local farmers' market.`, text: `The seeds ${this.facility.name} is using are the standard seeds one could pick up at the local farmers' market.`,
link: `Purchase genetically modified seeds`, link: `Purchase genetically modified seeds`,
cost: 25000 * V.upgradeMultiplierArcology, cost: 50000 * V.upgradeMultiplierArcology,
handler: () => { handler: () => {
V.PC.skill.engineering += 0.1; V.PC.skill.engineering += 0.1;
...@@ -260,7 +260,7 @@ App.Facilities.Farmyard.farmyard = class Farmyard extends App.Facilities.Facilit ...@@ -260,7 +260,7 @@ App.Facilities.Farmyard.farmyard = class Farmyard extends App.Facilities.Facilit
upgraded: 1, upgraded: 1,
text: `The machinery in ${this.facility.name} is equipment that was imported before the old world began to fall apart and is fairly old and outdated.`, text: `The machinery in ${this.facility.name} is equipment that was imported before the old world began to fall apart and is fairly old and outdated.`,
link: `Upgrade the machinery`, link: `Upgrade the machinery`,
cost: 50000 * V.upgradeMultiplierArcology, cost: 100000 * V.upgradeMultiplierArcology,
handler: () => { handler: () => {
V.PC.skill.engineering += 0.1; V.PC.skill.engineering += 0.1;
......
This diff is collapsed.
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