1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
|
const fs = require("fs")
const { parse } = require("csv-parse/sync")
var card_records = parse(fs.readFileSync("tools/cards.csv", "utf-8"), { columns: true, records_with_empty_values: true })
var scenario_records = parse(fs.readFileSync("tools/scenarios.csv", "utf-8"), { columns: true, skip_records_with_empty_values: true })
var result = [
`<!doctype html>
<html lang="en">
<head>
<title>Table Battle Cards</title>
<link rel="stylesheet" href="/fonts/fonts.css">
<link rel="stylesheet" href="/table-battles/cards.css">
<style>
body{background-color:dimgray;color:whitesmoke;max-width:1600px;margin:0 auto;padding:20px;background-image:url(../background.png)}
h1{color: white}
.list{display:flex;flex-wrap:wrap;gap:20px;}
</style>
</head>
<body>
<div>`
]
const WING = { red: 0, pink: 1, blue: 2, dkblue: 3 }
const WING_ICON = [ "\u2666", "\u2665", "\u2663", "\u2660" ]
var cards = [ ]
var card_index = {}
var cards_show = [ ]
var scenarios = []
for (let c of card_records) {
if (!c.number) {
result.push(`</div><h2>${c.scenario}</h2><div class="list">`)
continue
}
if (!c.name)
continue
let card = {
scenario: parseInt(c.scenario),
number: c.number,
name: c.name,
wing: WING[c.wing],
}
card_index[c.number] = cards.length
cards.push(card)
if (c.strength === "I") {
card.special = 1
}
else if (c.strength === "II") {
card.special = 2
}
else if (c.strength === "III") {
card.special = 3
}
else if (c.strength.endsWith("*")) {
card.strength = parseInt(c.strength)
card.star = 1
}
else {
card.strength = parseInt(c.strength)
}
card.dice = c.dice
card.actions = []
result.push(`<div class="formation card">`)
result.push(`<div class="name ${c.wing}">${c.name}</div>`)
if (card.strength)
result.push(`<div class="strength">${card.strength}</div>`)
else
result.push(`<div class="strength">${c.strength}</div>`)
if (c.dice) {
if (card.star)
result.push(`<div class="dice_area">${c.dice}<div class="star">★</div></div>`)
else
result.push(`<div class="dice_area">${c.dice}</div>`)
}
function make_action(type, requirement, target, effect) {
let a = { type }
if (requirement) a.requirement = requirement
if (target) a.target = target
if (effect) a.effect = effect
return a
}
if (c.action1_type) {
card.actions.push(make_action(c.action1_type, c.action1_req, c.action1_target, c.action1_effect))
result.push(`<div class="action_row">`)
result.push(`<div class="action_type">${c.action1_type}</div>`)
result.push(`<div class="action_requirement">${c.action1_req}</div>`)
result.push(`<div class="action_target">${c.action1_target}</div>`)
if (c.action1_effect)
result.push(`<div class="action_effect">${c.action1_effect}</div>`)
result.push(`</div>`)
}
if (c.action2_type || c.action2_effect) {
card.actions.push(make_action(c.action2_type, c.action2_req, c.action2_target, c.action2_effect))
result.push(`<div class="action_row">`)
result.push(`<div class="action_type reaction">${c.action2_type}</div>`)
result.push(`<div class="action_requirement">${c.action2_req}</div>`)
result.push(`<div class="action_target">${c.action2_target}</div>`)
if (c.action2_effect)
result.push(`<div class="action_effect">${c.action2_effect}</div>`)
result.push(`</div>`)
}
if (c.rule)
card.rule = c.rule_tag
if (c.rule_text) {
card.rule_text = c.rule_text
result.push(`<div class="rule_text">${c.rule_text}</div>`)
}
if (c.lore_text) {
card.lore_text = c.lore_text
result.push(`<div class="lore_text">${c.lore_text}</div>`)
}
if (c.reserve) {
if (c.reserve === "RETIRE")
card.retire = 1
else if (c.reserve === "PURSUIT")
card.pursuit = 1
else if (c.reserve === "Commanded")
card.reserve = []
else
card.reserve = c.reserve.split(" or ")
if (c.reserve === "RETIRE" || c.reserve === "PURSUIT")
result.push(`<div class="reserve">${c.reserve}</div>`)
else
result.push(`<div class="reserve">IN RESERVE (${c.reserve})</div>`)
}
result.push(`<div class="number">${c.number}</div>`)
result.push(`<div class="extra">${WING_ICON[card.wing]}</div>`)
result.push(`</div>`)
}
function find_card(scenario, name) {
name = name.replace(" out of reserve", "")
for (let c of cards)
if (c.scenario === scenario && c.name === name)
return card_index[c.number]
throw new Error("CARD NOT FOUND: " + scenario + " " + name)
}
function find_enemy_cards(scenario, wing) {
let w1, w2
if (wing === 0 || wing === 1)
w1 = 2, w2 = 3
if (wing === 2 || wing === 3)
w1 = 0, w2 = 1
let list = []
for (let c of cards)
if (c.scenario === scenario && (c.wing === w1 || c.wing === w2))
list.push(card_index[c.number])
return list
}
function find_friendly_cards(scenario, wing) {
let w1, w2
if (wing === 0 || wing === 1)
w1 = 0, w2 = 1
if (wing === 2 || wing === 3)
w1 = 2, w2 = 3
let list = []
for (let c of cards)
if (c.scenario === scenario && (c.wing === w1 || c.wing === w1))
list.push(card_index[c.number])
return list
}
function find_wing_cards(scenario, wing) {
let list = []
for (let c of cards)
if (c.scenario === scenario && c.wing === wing)
list.push(card_index[c.number])
return list
}
/* process action and reserve targets */
for (let c of cards) {
for (let a of c.actions) {
if (a.target) {
if (a.target === "Any enemy attack" || a.target === "Any enemy formation")
a.target_list = find_enemy_cards(c.scenario, c.wing)
else if (a.target === "Any friendly formation")
a.target_list = find_friendly_cards(c.scenario, c.wing)
else if (a.target === "Any friendly Pink formation")
a.target_list = find_wing_cards(c.scenario, WING.pink)
else
a.target_list = a.target.split(", ").map(name => find_card(c.scenario, name))
}
}
if (c.reserve)
c.reserve = c.reserve.map(name => find_card(c.scenario, name))
}
fs.writeFileSync("info/all-cards.html", result.join("\n"))
result = [
`<!doctype html>
<html lang="en">
<head>
<title>Table Battle Cards</title>
<link rel="stylesheet" href="/fonts/fonts.css">
<link rel="stylesheet" href="/table-battles/cards.css">
<style>
body{background-color:dimgray;color:whitesmoke;max-width:1600px;margin:0 auto;padding:20px;background-image:url(../background.png)}
.list{display:flex;flex-wrap:wrap;gap:20px;}
</style>
</head>
<body>
<div class="list">`
]
function parse_cards(text) {
let out = []
let list = text.split(",")
for (let range of list) {
let [a, b] = range.split("-")
a = card_index[a]
b = card_index[b]
if (a === undefined || b === undefined)
throw new Error("MISSING CARDS FOR " + text)
for (let i = a; i <= b; ++i)
out.push(i)
}
return out
}
let last_exp = null
for (let s of scenario_records) {
if (!s.name)
continue
if (last_exp !== s.expansion) {
result.push(`</div><h1>${s.expansion}</h1><div class="list">`)
last_exp = s.expansion
}
try {
scenarios.push({
number: parseInt(s.number),
name: s.name,
date: s.date,
players: [
{ name: s.player1, cards: parse_cards(s.cards1), morale: parseInt(s.morale1) },
{ name: s.player2, cards: parse_cards(s.cards2), morale: parseInt(s.morale2) },
],
rule: s.rule || undefined
})
result.push(`
<div class="scenario card">
<div class="scenario_title">
<div class="battle_name">${s.name}</div>
<div class="battle_date">${s.date}</div>
</div>
<div class="scenario_player">
<div class="scenario_player_name">${s.player1}</div>
<div class="scenario_cards">Cards ${s.cards1}</div>
<div class="scenario_morale">Morale: ${s.morale1}</div>
</div>
<div class="scenario_player">
<div class="scenario_player_name">${s.player2}</div>
<div class="scenario_cards">Cards ${s.cards2}</div>
<div class="scenario_morale">Morale: ${s.morale2}</div>
</div>
<div class="rule_text">${s.rule_text}</div>
<div class="lore_text">${s.lore_text}</div>
<div class="number">${s.number}</div>
</div>
`)
} catch (err) {
console.log(err)
}
}
fs.writeFileSync("info/scenarios.html", result.join("\n"))
result = []
result.push("const data = {")
result.push("scenarios: " + JSON.stringify(scenarios,0,"\t") + ",")
result.push("cards: " + JSON.stringify(cards,0,"\t") + ",")
result.push("}")
result.push("if (typeof module!=='undefined') module.exports = data")
fs.writeFileSync("data.js", result.join("\n"))
|