summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rules.js17
1 files changed, 9 insertions, 8 deletions
diff --git a/rules.js b/rules.js
index 145b1ea..5bb66fe 100644
--- a/rules.js
+++ b/rules.js
@@ -860,7 +860,7 @@ states.add_influence = {
states.tiananmen_square_attempt = {
inactive: 'do Tiananmen Square Attempt',
prompt() {
- view.prompt = 'Tiananmen Square Track attempt: Roll a die.'
+ view.prompt = 'Tiananmen Square Attempt: Roll a die.'
gen_action('roll')
},
roll() {
@@ -874,10 +874,10 @@ states.tiananmen_square_attempt_success = {
inactive: 'do Tiananmen Square Attempt',
prompt() {
if (game.vm_event > 200) { // TODO magic number
- view.prompt = 'Tiananmen Square Track attempt successful. Go to TST Award.'
+ view.prompt = 'Tiananmen Square Attempt: Successful. Claim award.'
gen_action('done')
} else {
- view.prompt = 'Tiananmen Square Track attempt successful.'
+ view.prompt = 'Tiananmen Square Attempt: Successful.'
gen_action('end_round')
}
},
@@ -894,7 +894,7 @@ states.tiananmen_square_attempt_success = {
states.tiananmen_square_attempt_fail = {
inactive: 'do Tiananmen Square Attempt',
prompt() {
- view.prompt = 'Tiananmen Square Track attempt failed.'
+ view.prompt = 'Tiananmen Square Attempt: Failed.'
gen_action('end_round')
},
end_round() {
@@ -906,7 +906,7 @@ states.tiananmen_square_attempt_fail = {
states.tiananmen_square_attempt_done = {
inactive: 'do Tiananmen Square Attempt',
prompt() {
- view.prompt = 'Tiananmen Square Track attempt: done.'
+ view.prompt = 'Tiananmen Square Attempt: Done.'
gen_action('end_round')
},
end_round() {
@@ -917,7 +917,8 @@ states.tiananmen_square_attempt_done = {
states.tst_goddess = {
inactive: 'choose whether to discard a card',
prompt() {
- view.prompt = 'Tiananmen Square Track award: you may discard a non-Power Struggle Card and draw a replacement.'
+ // TODO: at start of turn?
+ view.prompt = 'Tiananmen Square Award: Discard non-Scoring Card, and draw replacement card.'
for (let card of game.valid_cards) {
gen_action_card(card)
}
@@ -938,7 +939,7 @@ states.tst_goddess = {
states.tst_goddess_draw = {
inactive: 'choose whether to discard a card',
prompt() {
- view.prompt = 'Draw a replacement card.'
+ view.prompt = 'Tiananmen Square Award: Draw a replacement card.'
gen_action('draw')
},
draw() {
@@ -5371,7 +5372,7 @@ function vm_legacy_of_1968() {
function vm_li_peng() {
add_to_persistent_events(C_LI_PENG)
- logi(`+1 modifier to all Communist Tiananmen Square Track attempts for the rest of the game`)
+ logi(`+1 modifier to all Communist Tiananmen Square Attempts for the rest of the game`)
vm_next()
}