From be0288f216f4ac5128c2bc23b7470af7c94bc431 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Mon, 5 Dec 2022 12:05:21 -0500 Subject: [PATCH] Set `faction_code: "neutral"` on Treachery cards --- resources/ArkhamDBExport.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/resources/ArkhamDBExport.js b/resources/ArkhamDBExport.js index f56d60e..ba4a9d5 100644 --- a/resources/ArkhamDBExport.js +++ b/resources/ArkhamDBExport.js @@ -379,7 +379,10 @@ function build_card(component, pack_code, cycle_prefix, copies) { )); case "AHLCG-WeaknessTreachery-Default": return order_by_keys(Object.assign( - { type_code: "treachery", }, + { + type_code: "treachery", + faction_code: "neutral", + }, common_data(), treachery_subtype() ));