summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2025-03-22 16:00:08 +0100
committerTor Andersson <tor@ccxvii.net>2025-03-22 16:00:20 +0100
commit6fc07d9638e6fba8b0750201ab8d400d5e1754ed (patch)
tree4eb5fbdf2986e06a6deb0a82c6a2e1e827e4c7bc
parent3f07e3e2d2c7b29170cffb5d982b669d7ac67b3f (diff)
downloadland-and-freedom-6fc07d9638e6fba8b0750201ab8d400d5e1754ed.tar.gz
remove fascist test prefix
-rw-r--r--rules.js6
-rw-r--r--rules.ts6
2 files changed, 6 insertions, 6 deletions
diff --git a/rules.js b/rules.js
index f0c5b69..8474e71 100644
--- a/rules.js
+++ b/rules.js
@@ -975,7 +975,7 @@ states.change_bonus = {
},
};
states.play_card = {
- inactive: 'choose a card',
+ inactive: 'play a card',
prompt() {
gen_spend_hero_points();
view.prompt = 'Play a card.';
@@ -1262,11 +1262,11 @@ states.hero_points = {
}
if (game.hero_points[POOL_ID] > 0) {
view.prompt =
- value > 1 ? `Fascist Test: Gain ${value} Hero points.` : 'Fascist Test: Gain 1 Hero point.';
+ value > 1 ? `Gain ${value} Hero points.` : 'Gain 1 Hero point.';
gen_action('gain_hp');
}
else {
- view.prompt = 'Fascist Test: No Hero points available in pool.';
+ view.prompt = 'No Hero points available in pool.';
gen_action('skip');
}
},
diff --git a/rules.ts b/rules.ts
index 63ab7f8..2698106 100644
--- a/rules.ts
+++ b/rules.ts
@@ -1245,7 +1245,7 @@ states.change_bonus = {
// Used for effects that allow play of an extra card
states.play_card = {
- inactive: 'choose a card',
+ inactive: 'play a card',
prompt() {
gen_spend_hero_points();
@@ -1567,10 +1567,10 @@ states.hero_points = {
}
if (game.hero_points[POOL_ID] > 0) {
view.prompt =
- value > 1 ? `Fascist Test: Gain ${value} Hero points.` : 'Fascist Test: Gain 1 Hero point.';
+ value > 1 ? `Gain ${value} Hero points.` : 'Gain 1 Hero point.';
gen_action('gain_hp');
} else {
- view.prompt = 'Fascist Test: No Hero points available in pool.';
+ view.prompt = 'No Hero points available in pool.';
gen_action('skip');
}
},