Skip to content

Commit 6506f79

Browse files
committed
fix Jorg's costs
1 parent 568c3d4 commit 6506f79

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

client/ui.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ tar.ui = self
1111
a.patch(window, tar)
1212

1313
// Increment by 1 when publishing an update.
14-
const VERSION = 83
14+
const VERSION = 84
1515
let INITED
1616

1717
/*

shared/game_const.mjs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ export const CODES_TO_BUIS_SHORT = dict({
117117
F302: `Barric`,
118118
F303: `SiegCit`,
119119
F3H07CB01: `ExpPulse`,
120-
F3H07CB01A1: `CharSys`,
120+
F3H07CB01A: `CharSys`,
121121
F3H10CB01: `Scarlett`,
122122
F3H10CB01A: `ScarTig`,
123123
F3H10SB01: `CampAlph`,
@@ -204,11 +204,12 @@ export const BUI_COSTS = dict({
204204
F302: {base: 150, upg: [[100, 220], [250, 30], [1, 350]]},
205205

206206
F1H07CB01: {base: 200, upg: [[200, 200], [250, 1100], [3500, 300]]},
207-
F3H07CB01: {base: 0, upg: [[50, 250], [250, 250], [800, 800]]},
208207
F2H09CB01: {base: 50},
209208
F2H10CB01: {base: 50, upg: [[50, 80], [100, 100], [250, 250]]},
210-
[BUI_CODE_EXP_CHAR_SYS]: {base: 50}, // Can also be 0. Deals no damage anyway.
211-
F3H07CB01A1: {base: 50}, // TODO find out if this is real.
209+
210+
F3H07CB01: {base: 50, upg: [[50, 250], [200, 250], [800, 800]]},
211+
[BUI_CODE_EXP_CHAR_SYS]: {base: 50}, // Can also be 0. We special-case it in `buiCost`.
212+
212213
F3H10CB01A: {base: 200},
213214
F3H10SB01: {base: 350, upg: [[50, 50], [125, 125], [250, 250]]},
214215

todo.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1620,4 +1620,8 @@ Plot totals: add `round_num`.
16201620

16211621
---
16221622

1623-
* [x] Convert the "recommended next step" special cases into a reactive element which displays the full setup sequence, as a list with checkbox icons. Completing a step ticks the box and crosses-out the text.
1623+
* [x] Convert the "recommended next step" special cases into a reactive element which displays the full setup sequence, as a list with checkbox icons. Completing a step ticks the box and crosses-out the text.
1624+
1625+
---
1626+
1627+
`watch`: don't assume new run if `.tabularius_run_num` matches.

0 commit comments

Comments
 (0)