mirror of
https://github.com/wassname/cardsforscience.git
synced 2026-06-27 17:15:11 +08:00
Upgrades for all the workers.
This commit is contained in:
+194
-16
@@ -94,12 +94,12 @@
|
||||
"key": "upgrade-postdocs1",
|
||||
"name": "Project Management Seminar",
|
||||
"description": "Hard work also requires soft skills.",
|
||||
"effect": "Postdocs produce +30 data per second.",
|
||||
"effect": "Postdocs produce +50 data per second.",
|
||||
"icon": "fa-group",
|
||||
"cost": 7.5e4,
|
||||
"targets": [{ "key": "workers-postdocs", "property": "rate" }],
|
||||
"requirements": [{ "key": "workers-postdocs", "property": "hired", "threshold": 5 }],
|
||||
"constant": 30
|
||||
"constant": 50
|
||||
},
|
||||
{
|
||||
"key": "upgrade-postdocs2",
|
||||
@@ -136,25 +136,190 @@
|
||||
},
|
||||
{
|
||||
"key": "upgrade-fellows1",
|
||||
"name": "",
|
||||
"description": "",
|
||||
"effect": "Fellows produce an additional 3 data per second.",
|
||||
"name": "Video Meetings",
|
||||
"description": "Participate but also get work done.",
|
||||
"effect": "Fellows produce +4k data per second.",
|
||||
"icon": "fa-group",
|
||||
"cost": 1000,
|
||||
"targets": [{ "key": "workers-summies", "property": "rate" }],
|
||||
"requirements": [{ "key": "workers-summies", "property": "hired", "threshold": 5 }],
|
||||
"constant": 3
|
||||
"cost": 6e5,
|
||||
"targets": [{ "key": "workers-fellows", "property": "rate" }],
|
||||
"requirements": [{ "key": "workers-fellows", "property": "hired", "threshold": 5 }],
|
||||
"constant": 4e3
|
||||
},
|
||||
{
|
||||
"key": "upgrade-fellows2",
|
||||
"name": "An Extra Year",
|
||||
"description": "Extend your Fellow's contracts.",
|
||||
"effect": "Fellows produce twice as much data per second.",
|
||||
"icon": "fa-group",
|
||||
"cost": 6e6,
|
||||
"targets": [{ "key": "workers-fellows", "property": "rate" }],
|
||||
"requirements": [{ "key": "upgrade-fellows1", "property": "used", "threshold": 1 }],
|
||||
"factor": 2
|
||||
},
|
||||
{
|
||||
"key": "upgrade-fellows3",
|
||||
"name": "External Funding",
|
||||
"description": "Your Fellows are happier and you don't have to pay for it. Excellent!",
|
||||
"effect": "Fellows produce twice as much data per second.",
|
||||
"icon": "fa-group",
|
||||
"cost": 6e7,
|
||||
"targets": [{ "key": "workers-fellows", "property": "rate" }],
|
||||
"requirements": [{ "key": "upgrade-fellows2", "property": "used", "threshold": 1 }],
|
||||
"factor": 2
|
||||
},
|
||||
{
|
||||
"key": "upgrade-fellows4",
|
||||
"name": "Pet Cat",
|
||||
"description": "Makes sure your Fellows go home at one point and eventually get some rest.",
|
||||
"effect": "Fellows produce twice as much data per second.",
|
||||
"icon": "fa-group",
|
||||
"cost": 6e8,
|
||||
"targets": [{ "key": "workers-fellows", "property": "rate" }],
|
||||
"requirements": [{ "key": "upgrade-fellows3", "property": "used", "threshold": 1 }],
|
||||
"factor": 2
|
||||
},
|
||||
{
|
||||
"key": "upgrade-permanent1",
|
||||
"name": "Daycare",
|
||||
"description": "Someone to take care of your staff's children.",
|
||||
"effect": "Permanent staff produces +20k data per second.",
|
||||
"icon": "fa-group",
|
||||
"cost": 6.5e6,
|
||||
"targets": [{ "key": "workers-permanent", "property": "rate" }],
|
||||
"requirements": [{ "key": "workers-permanent", "property": "hired", "threshold": 5 }],
|
||||
"constant": 2e4
|
||||
},
|
||||
{
|
||||
"key": "upgrade-permanent2",
|
||||
"name": "Company Car",
|
||||
"description": "Let your Staff use cars you pay for.",
|
||||
"effect": "Permanent staff produces twice as much data per second.",
|
||||
"icon": "fa-group",
|
||||
"cost": 6.5e7,
|
||||
"targets": [{ "key": "workers-permanent", "property": "rate" }],
|
||||
"requirements": [{ "key": "upgrade-permanent1", "property": "used", "threshold": 1 }],
|
||||
"factor": 2
|
||||
},
|
||||
{
|
||||
"key": "upgrade-permanent3",
|
||||
"name": "Leadership Seminar",
|
||||
"description": "Teach your Permanent Staff some people skills.",
|
||||
"effect": "Permanent staff produces twice as much data per second.",
|
||||
"icon": "fa-group",
|
||||
"cost": 6.5e8,
|
||||
"targets": [{ "key": "workers-permanent", "property": "rate" }],
|
||||
"requirements": [{ "key": "upgrade-permanent2", "property": "used", "threshold": 1 }],
|
||||
"factor": 2
|
||||
},
|
||||
{
|
||||
"key": "upgrade-permanent4",
|
||||
"name": "Office close to the Coffee Machine",
|
||||
"description": "Coffee => Productivity. Simple.",
|
||||
"effect": "Permanent staff produces twice as much data per second.",
|
||||
"icon": "fa-group",
|
||||
"cost": 6.5e9,
|
||||
"targets": [{ "key": "workers-permanent", "property": "rate" }],
|
||||
"requirements": [{ "key": "upgrade-permanent3", "property": "used", "threshold": 1 }],
|
||||
"factor": 2
|
||||
},
|
||||
{
|
||||
"key": "upgrade-profs1",
|
||||
"name": "More TAs",
|
||||
"description": "Hire extra teaching assistants to take work off your professors' shoulders.",
|
||||
"effect": "Professors produce +300k data per second.",
|
||||
"icon": "fa-group",
|
||||
"cost": 5e7,
|
||||
"targets": [{ "key": "workers-profs", "property": "rate" }],
|
||||
"requirements": [{ "key": "workers-profs", "property": "hired", "threshold": 5 }],
|
||||
"constant": 3e5
|
||||
},
|
||||
{
|
||||
"key": "upgrade-profs2",
|
||||
"name": "Extra Secretary",
|
||||
"description": "Secretaries have to do a lot of work at University. It's good to have them!",
|
||||
"effect": "Professors produce twice as much data per second.",
|
||||
"icon": "fa-group",
|
||||
"cost": 5e8,
|
||||
"targets": [{ "key": "workers-profs", "property": "rate" }],
|
||||
"requirements": [{ "key": "upgrade-profs1", "property": "used", "threshold": 1 }],
|
||||
"factor": 2
|
||||
},
|
||||
{
|
||||
"key": "upgrade-profs3",
|
||||
"name": "Sabbatical",
|
||||
"description": "Professors take a year off teaching to be more productive.",
|
||||
"effect": "Professors produce twice as much data per second.",
|
||||
"icon": "fa-group",
|
||||
"cost": 5e9,
|
||||
"targets": [{ "key": "workers-profs", "property": "rate" }],
|
||||
"requirements": [{ "key": "upgrade-profs2", "property": "used", "threshold": 1 }],
|
||||
"factor": 2
|
||||
},
|
||||
{
|
||||
"key": "upgrade-profs4",
|
||||
"name": "Online Courses",
|
||||
"description": "Record once, use often. No more useless time spent in lectures.",
|
||||
"effect": "Professors produce twice as much data per second.",
|
||||
"icon": "fa-group",
|
||||
"cost": 5e10,
|
||||
"targets": [{ "key": "workers-profs", "property": "rate" }],
|
||||
"requirements": [{ "key": "upgrade-profs3", "property": "used", "threshold": 1 }],
|
||||
"factor": 2
|
||||
},
|
||||
{
|
||||
"key": "upgrade-nobel1",
|
||||
"name": "Køtbullar",
|
||||
"description": "Delicious Swedish Meatballs that are (probably) served at the Nobel Prize ceremony.",
|
||||
"effect": "Nobel Laureates produce +3M data per second.",
|
||||
"icon": "fa-group",
|
||||
"cost": 3e8,
|
||||
"targets": [{ "key": "workers-nobel", "property": "rate" }],
|
||||
"requirements": [{ "key": "workers-nobel", "property": "hired", "threshold": 5 }],
|
||||
"constant": 3e6
|
||||
},
|
||||
{
|
||||
"key": "upgrade-nobel2",
|
||||
"name": "Street Names",
|
||||
"description": "Name the streets at your facility after Nobel Laureates.",
|
||||
"effect": "Nobel Laureates produce twice as much data per second.",
|
||||
"icon": "fa-group",
|
||||
"cost": 3e9,
|
||||
"targets": [{ "key": "workers-nobel", "property": "rate" }],
|
||||
"requirements": [{ "key": "upgrade-nobel1", "property": "used", "threshold": 1 }],
|
||||
"factor": 2
|
||||
},
|
||||
{
|
||||
"key": "upgrade-nobel3",
|
||||
"name": "Summer Vacation",
|
||||
"description": "At this point in their carreer your Nobel Laureates can afford to take a vacation once in a while.",
|
||||
"effect": "Nobel Laureates produce twice as much data per second.",
|
||||
"icon": "fa-group",
|
||||
"cost": 3e10,
|
||||
"targets": [{ "key": "workers-nobel", "property": "rate" }],
|
||||
"requirements": [{ "key": "upgrade-nobel2", "property": "used", "threshold": 1 }],
|
||||
"factor": 2
|
||||
},
|
||||
{
|
||||
"key": "upgrade-nobel4",
|
||||
"name": "Second Nobel Prize",
|
||||
"description": "Only Marie Curie and John Bardeen received such high honours in Physics.",
|
||||
"effect": "Nobel Laureates produce twice as much data per second.",
|
||||
"icon": "fa-group",
|
||||
"cost": 3e11,
|
||||
"targets": [{ "key": "workers-nobel", "property": "rate" }],
|
||||
"requirements": [{ "key": "upgrade-nobel3", "property": "used", "threshold": 1 }],
|
||||
"factor": 2
|
||||
},
|
||||
{
|
||||
"key": "upgrade-summies1",
|
||||
"name": "Summer Lectures",
|
||||
"description": "Interesting lectures given by the best in the field.",
|
||||
"effect": "Summmer Students produce an additional 3 data per second.",
|
||||
"effect": "Summmer Students produce +80M data per second.",
|
||||
"icon": "fa-group",
|
||||
"cost": 1000,
|
||||
"cost": 2e9,
|
||||
"targets": [{ "key": "workers-summies", "property": "rate" }],
|
||||
"requirements": [{ "key": "workers-summies", "property": "hired", "threshold": 5 }],
|
||||
"constant": 3
|
||||
"constant": 8e7
|
||||
},
|
||||
{
|
||||
"key": "upgrade-summies2",
|
||||
@@ -162,7 +327,7 @@
|
||||
"description": "Have your Summies prepare interesting posters and explain them to their peers.",
|
||||
"effect": "Summer Students produce twice as much data per second.",
|
||||
"icon": "fa-group",
|
||||
"cost": 10000,
|
||||
"cost": 2e10,
|
||||
"targets": [{ "key": "workers-summies", "property": "rate" }],
|
||||
"requirements": [{ "key": "upgrade-summies1", "property": "used", "threshold": 1 }],
|
||||
"factor": 2
|
||||
@@ -173,7 +338,7 @@
|
||||
"description": "A nice get-together to increase morale in the group.",
|
||||
"effect": "Summer Students produce twice as much data per second.",
|
||||
"icon": "fa-group",
|
||||
"cost": 100000,
|
||||
"cost": 2e11,
|
||||
"targets": [{ "key": "workers-summies", "property": "rate" }],
|
||||
"requirements": [{ "key": "upgrade-summies2", "property": "used", "threshold": 1 }],
|
||||
"factor": 2
|
||||
@@ -184,7 +349,7 @@
|
||||
"description": "Awesome parties in the CERN pump hall. Sure the hangover does not increase productivity but your morale gets a huge boost.",
|
||||
"effect": "Summer Students produce twice as much data per second.",
|
||||
"icon": "fa-group",
|
||||
"cost": 1000000,
|
||||
"cost": 2e12,
|
||||
"targets": [{ "key": "workers-summies", "property": "rate" }],
|
||||
"requirements": [{ "key": "upgrade-summies3", "property": "used", "threshold": 1 }],
|
||||
"factor": 2
|
||||
@@ -195,7 +360,7 @@
|
||||
"description": "Addictively delicious. Also free.",
|
||||
"effect": "All workers produce twice as much data per second.",
|
||||
"icon": "fa-coffee",
|
||||
"cost": 1e6,
|
||||
"cost": 8e10,
|
||||
"targets": [
|
||||
{ "key": "workers-phdstudents", "property": "rate" },
|
||||
{ "key": "workers-postdocs", "property": "rate" },
|
||||
@@ -567,5 +732,18 @@
|
||||
{ "key": "research-xib", "property": "level", "threshold": 1 }
|
||||
],
|
||||
"factor": 2
|
||||
},
|
||||
{
|
||||
"key": "upgrade-lhcb",
|
||||
"name": "LHCb",
|
||||
"description": "CP violation research on a whole new level.",
|
||||
"effect": "Future research of CP violation gives +1M reputation.",
|
||||
"icon": "fa-",
|
||||
"cost": 4e11,
|
||||
"targets": [{"key": "research-cpv", "property": "reputation"}],
|
||||
"requirements": [
|
||||
{ "key": "research-cpv", "property": "level", "threshold": 15 },
|
||||
{ "key": "upgrade-lhc", "property": "used", "threshold": 1 }
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
+1
-1
@@ -72,7 +72,7 @@
|
||||
{
|
||||
"key": "workers-summies",
|
||||
"name": "Summer Students",
|
||||
"description": "They are AWESOME. Their best ideas come between two parties.",
|
||||
"description": "Their best ideas come between two parties.",
|
||||
"cost_increase": 1.15,
|
||||
"state": {
|
||||
"cost": 1.25e8,
|
||||
|
||||
Reference in New Issue
Block a user