Skip to content

Commit

Permalink
Fix: Huge ship values accidentally got deleted during sync
Browse files Browse the repository at this point in the history
  • Loading branch information
guidokessels committed Oct 31, 2020
1 parent a0c1d50 commit 57143f2
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 6 deletions.
12 changes: 11 additions & 1 deletion data/upgrades/crew.json
Original file line number Diff line number Diff line change
Expand Up @@ -1048,7 +1048,17 @@
],
"cost": {
"variable": "initiative",
"values": { "0": 2, "1": 3, "2": 4, "3": 5, "4": 6, "5": 7, "6": 8 }
"values": {
"0": 2,
"1": 3,
"2": 4,
"3": 5,
"4": 6,
"5": 7,
"6": 8,
"7": 9,
"8": 10
}
},
"hyperspace": false
},
Expand Down
6 changes: 3 additions & 3 deletions data/upgrades/gunner.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
],
"cost": {
"variable": "size",
"values": { "Small": 7, "Medium": 6, "Large": 5 }
"values": { "Small": 7, "Medium": 6, "Large": 5, "Huge": 4 }
},
"hyperspace": true
},
Expand Down Expand Up @@ -311,7 +311,7 @@
],
"cost": {
"variable": "size",
"values": { "Small": 12, "Medium": 9, "Large": 7 }
"values": { "Small": 12, "Medium": 9, "Large": 7, "Huge": 7 }
},
"restrictions": [{ "action": { "type": "Rotate Arc" } }],
"hyperspace": false
Expand Down Expand Up @@ -464,7 +464,7 @@
"name": "Suppressive Gunner",
"cost": {
"variable": "size",
"values": { "Small": 8, "Medium": 7, "Large": 6 }
"values": { "Small": 8, "Medium": 7, "Large": 6, "Huge": 3 }
},
"limited": 0,
"xws": "suppressivegunner",
Expand Down
12 changes: 11 additions & 1 deletion data/upgrades/illicit.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,17 @@
],
"cost": {
"variable": "initiative",
"values": { "0": 0, "1": 1, "2": 2, "3": 3, "4": 4, "5": 5, "6": 6 }
"values": {
"0": 0,
"1": 1,
"2": 2,
"3": 3,
"4": 4,
"5": 5,
"6": 6,
"7": 7,
"8": 8
}
},
"hyperspace": true
},
Expand Down
2 changes: 1 addition & 1 deletion data/upgrades/title.json
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,7 @@
{
"name": "Slave I",
"limited": 1,
"xws": "slaveiseparatist",
"xws": "slavei-separatist",
"hyperspace": false,
"sides": [
{
Expand Down

0 comments on commit 57143f2

Please sign in to comment.