summaryrefslogtreecommitdiff
path: root/types.d.ts
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2025-03-11 00:12:37 +0100
committerTor Andersson <tor@ccxvii.net>2025-03-11 00:12:37 +0100
commit9075b4e577567e774b4a2ba6ca6ad07241087912 (patch)
tree73f88e17b29fdc2d6c06e72c17fea9e510502c9f /types.d.ts
parentfd27f4280485cc79d1d3a2698775678c42735487 (diff)
downloadland-and-freedom-9075b4e577567e774b4a2ba6ca6ad07241087912.tar.gz
Add specific track trigger prefixes.
Diffstat (limited to 'types.d.ts')
-rw-r--r--types.d.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/types.d.ts b/types.d.ts
index b2e915b..4e0daaf 100644
--- a/types.d.ts
+++ b/types.d.ts
@@ -175,7 +175,7 @@ export interface PlayerCard extends CardBase {
icons: Icon[];
}
-export type EffectSource = 'player_event' | 'fascist_event' | 'fascist_test' | 'track_icon' | 'momentum';
+export type EffectSource = 'player_event' | 'fascist_event' | 'fascist_test' | 'track_icon' | 'momentum' | 'tr0' | 'tr1' | 'tr2' | 'tr3' | 'tr4';
export interface Effect {
type:
@@ -213,6 +213,7 @@ export interface StaticData {
}>;
tracks: Array<{
id: number;
+ action: EffectSource;
name: string;
triggers: Array<null | Effect>;
}>;