Skip to content

Commit 488cf05

Browse files
committed
Trim lineup to 6 editions for launch season
Drop GM and Guntank from the catalog, plotter order, shop grid, and Worker. SVG assets stay in the repo for future seasons. https://claude.ai/code/session_01VhWRYXbuqapZ9YkvksroaS
1 parent d6230a5 commit 488cf05

3 files changed

Lines changed: 5 additions & 39 deletions

File tree

data/editions.js

Lines changed: 2 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/build_data.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020
"dom": {"file":"dom", "name":"Dom", "code":"MS-09", "jp":"ドム", "edition":"ED. 12/25 · 11×14″", "price":"$45"},
2121
"zgok": {"file":"zgok", "name":"Z'Gok", "code":"MSM-07", "jp":"ズゴック", "edition":"ED. 22/25 · 11×14″", "price":"$45"},
2222
"gp02": {"file":"gp-02", "name":"GP-02A", "code":"RX-78GP02", "jp":"ガンダム試作2号機", "edition":"ED. 15/25 · 11×14″", "price":"$45"},
23-
"gm": {"file":"gm", "name":"GM", "code":"RGM-79", "jp":"ジム", "edition":"ED. 07/25 · 11×14″", "price":"$45"},
24-
"guntank": {"file":"guntank", "name":"Guntank", "code":"RX-75", "jp":"ガンタンク", "edition":"ED. 11/25 · 11×14″", "price":"$45"},
2523
}
2624

2725
# Short editorial blurb shown on each edition's product page.
@@ -32,13 +30,11 @@
3230
"dom": "A ground-assault suit riding hover thrusters for deceptively fast movement across open terrain. Its scattering beam gun and giant heat saber made it a frontline terror.",
3331
"zgok": "An amphibious Zeon suit built for hit-and-run raids from the water. Rounded armor, clawed manipulators, and head-mounted mega particle guns.",
3432
"gp02": "A Gundam Development Project unit engineered to carry and fire a tactical warhead. Heavy shielding and a massive plasma-clad shield define its silhouette.",
35-
"gm": "The Federation's answer to mass production — a simplified, mass-deployable Gundam derivative that turned the tide through sheer numbers.",
36-
"guntank": "Half mobile suit, half tank. A tracked lower body and twin long-range cannons made it the artillery support of the Federation's early V-Project.",
3733
}
3834

3935
# order of the dropdown in the live plotter, and of the cards in the shop grid
40-
PLOTTER_ORDER = ["zaku","dom","guncannon","bigzam","zgok","gp02","gm","guntank"]
41-
SHOP_ORDER = ["zaku","guncannon","bigzam","dom","zgok","gp02","gm","guntank"]
36+
PLOTTER_ORDER = ["zaku","dom","guncannon","bigzam","zgok","gp02"]
37+
SHOP_ORDER = ["zaku","guncannon","bigzam","dom","zgok","gp02"]
4238

4339
def extract(file):
4440
s = open(os.path.join(PLOTS, file + ".svg")).read()

worker/src/index.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@ const CATALOG = {
2525
bigzam: { name: "Big Zam — MA-08", cents: 4500 },
2626
dom: { name: "Dom — MS-09", cents: 4500 },
2727
zgok: { name: "Z'Gok — MSM-07", cents: 4500 },
28-
gp02: { name: "GP-02A — RX-78GP02", cents: 4500 },
29-
gm: { name: "GM — RGM-79", cents: 4500 },
30-
guntank: { name: "Guntank — RX-75", cents: 4500 }
28+
gp02: { name: "GP-02A — RX-78GP02", cents: 4500 }
3129
};
3230

3331
// Pen colors are variants at the same price. Color is cosmetic for pricing

0 commit comments

Comments
 (0)