summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2024-04-21 21:13:04 +0200
committerTor Andersson <tor@ccxvii.net>2024-04-21 21:25:23 +0200
commit6c154f4834b3d23bc87dcee81f89c65636bd817e (patch)
tree50eddae3af7d09a92508c989b527ef7645e3cfc4
parentadbf0f6dcc440cfa9f1b6aac00529b5fd5b54cf3 (diff)
downloadplantagenet-6c154f4834b3d23bc87dcee81f89c65636bd817e.tar.gz
Shorten property name for artillery.
-rw-r--r--rules.ts26
1 files changed, 13 insertions, 13 deletions
diff --git a/rules.ts b/rules.ts
index e7832a6..c37f7ce 100644
--- a/rules.ts
+++ b/rules.ts
@@ -170,8 +170,8 @@ interface Battle {
target: Lord[] | null,
ahits: number,
dhits: number,
- attacker_artillery: number,
- defender_artillery: number,
+ aart: number,
+ dart: number,
final_charge: 0 | 1,
ravine?: Lord,
caltrops?: Lord,
@@ -5596,8 +5596,8 @@ function goto_battle() {
target: null,
ahits: 0,
dhits: 0,
- attacker_artillery: 0,
- defender_artillery: 0,
+ aart: 0,
+ dart: 0,
final_charge: 0,
}
@@ -6376,9 +6376,9 @@ states.culverins_and_falconets = {
}
if (is_attacker())
- game.battle.attacker_artillery = (die1 + die2)
+ game.battle.aart = (die1 + die2)
else
- game.battle.defender_artillery = (die1 + die2)
+ game.battle.dart = (die1 + die2)
discard_lord_capability(lord, c)
end_culverins_and_falconets()
@@ -6825,18 +6825,18 @@ function goto_total_hits() {
}
}
- if (game.battle.attacker_artillery > 0) {
- log_hits(game.battle.attacker_artillery, "attacker artillery")
- ahits += game.battle.attacker_artillery << 1
+ if (game.battle.aart > 0) {
+ log_hits(game.battle.aart, "attacker artillery")
+ ahits += game.battle.aart << 1
}
- if (game.battle.defender_artillery > 0) {
+ if (game.battle.dart > 0) {
log_hits(game.battle.dhits, "defender artillery")
- dhits += game.battle.defender_artillery << 1
+ dhits += game.battle.dart << 1
}
// use artillery only once
- game.battle.attacker_artillery = 0
- game.battle.defender_artillery = 0
+ game.battle.aart = 0
+ game.battle.dart = 0
if (ahits & 1)
ahits = (ahits >> 1) + 1