Spaces:
Running
Running
osanseviero
commited on
Commit
·
831abb0
1
Parent(s):
b0fd129
Release the AGI
Browse files- projects.js +4 -4
projects.js
CHANGED
@@ -699,7 +699,7 @@ var projectButtonAgi = {
|
|
699 |
displayMessage("Profit using the AGI... Was that the right decision?");
|
700 |
displayMessage("Thanks for playing!");
|
701 |
|
702 |
-
projectButtonAgi.element.parentNode.removeChild(
|
703 |
var index = activeProjects.indexOf(projectButtonAgi);
|
704 |
activeProjects.splice(index, 1);
|
705 |
}
|
@@ -761,11 +761,11 @@ projects.push(project31);
|
|
761 |
var project37 = {
|
762 |
id: "projectButton37",
|
763 |
title: "Acquihire ",
|
764 |
-
priceTag: "($
|
765 |
description: "Acquire another ML startup (+1 Trust)",
|
766 |
trigger: function(){return portTotal>=10000},
|
767 |
uses: 1,
|
768 |
-
cost: function(){return funds>=
|
769 |
flag: 0,
|
770 |
element: null,
|
771 |
effect: function(){
|
@@ -774,7 +774,7 @@ var project37 = {
|
|
774 |
demandBoost = demandBoost*5;
|
775 |
trust = trust + 1;
|
776 |
document.getElementById("demand").innerHTML = demand;
|
777 |
-
funds = funds -
|
778 |
project37.element.parentNode.removeChild(project37.element);
|
779 |
var index = activeProjects.indexOf(project37);
|
780 |
activeProjects.splice(index, 1);
|
|
|
699 |
displayMessage("Profit using the AGI... Was that the right decision?");
|
700 |
displayMessage("Thanks for playing!");
|
701 |
|
702 |
+
projectButtonAgi.element.parentNode.removeChild(projectButtonAgi.element);
|
703 |
var index = activeProjects.indexOf(projectButtonAgi);
|
704 |
activeProjects.splice(index, 1);
|
705 |
}
|
|
|
761 |
var project37 = {
|
762 |
id: "projectButton37",
|
763 |
title: "Acquihire ",
|
764 |
+
priceTag: "($200,000)",
|
765 |
description: "Acquire another ML startup (+1 Trust)",
|
766 |
trigger: function(){return portTotal>=10000},
|
767 |
uses: 1,
|
768 |
+
cost: function(){return funds>=200000},
|
769 |
flag: 0,
|
770 |
element: null,
|
771 |
effect: function(){
|
|
|
774 |
demandBoost = demandBoost*5;
|
775 |
trust = trust + 1;
|
776 |
document.getElementById("demand").innerHTML = demand;
|
777 |
+
funds = funds - 200000;
|
778 |
project37.element.parentNode.removeChild(project37.element);
|
779 |
var index = activeProjects.indexOf(project37);
|
780 |
activeProjects.splice(index, 1);
|