cleanup: Collapse some comments

This commit is contained in:
Adam Goldsmith 2021-09-07 23:35:32 -04:00
parent 236fb6c2a3
commit d1801add7a
1 changed files with 3 additions and 6 deletions

View File

@ -100,8 +100,7 @@ var card_data = {
code: String(code),
// TODO: handle None/X
cost: parseInt(Component.settings.get('ResourceCost')) || null,
// TODO: could be derived?
deck_limit: 2,
deck_limit: 2, // TODO: could be derived?
faction_code: String(Component.settings.get('CardClass')).toLowerCase(),
flavor: substitute_tags(String(Component.settings.get('Flavor'))),
health: parseInt(Component.settings.get('Stamina')) || null,
@ -111,10 +110,8 @@ var card_data = {
name: substitute_tags(String(card_name)),
pack_code: pack_code,
position: parseInt(Component.settings.get('CollectionNumber')) || null,
// TODO
quantity: 2,
// TODO
restrictions: null,
quantity: 2, // TODO
//restrictions: null, // TODO
sanity: parseInt(Component.settings.get('Sanity')) || null,
slot: String(slot),
strength: skills["Combat"],