diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2023-09-23 12:13:11 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2023-09-23 12:13:11 +0200 |
commit | b21d125966e118914f0442f322eebc298be78824 (patch) | |
tree | 1883ec0d922675d4179ef126b9c12df4b6571bda /lib/colonial_twilight/fln_rules.rb | |
parent | fcb4a526a76e0e8464fc42a92145fe0ed149026b (diff) | |
download | colonial-twilight-b21d125966e118914f0442f322eebc298be78824.zip colonial-twilight-b21d125966e118914f0442f322eebc298be78824.tar.gz |
FLNRules : support agitate
Diffstat (limited to 'lib/colonial_twilight/fln_rules.rb')
-rw-r--r-- | lib/colonial_twilight/fln_rules.rb | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/lib/colonial_twilight/fln_rules.rb b/lib/colonial_twilight/fln_rules.rb index fa07805..dac834b 100644 --- a/lib/colonial_twilight/fln_rules.rb +++ b/lib/colonial_twilight/fln_rules.rb @@ -1,10 +1,11 @@ #! /usr/bin/env ruby # frozen_string_literal: true +# rubocop:disable Style/Documentation +# module ColonialTwilight - # general rules governing operations and activities module FLNRules - # Rally 3.3.1 + # Rally 3.3.1 + France Track def may_rally_in?(space) (space.sector? || (space.city? && !space.support?) || (space.country? && space.independent?)) end @@ -13,6 +14,14 @@ module ColonialTwilight board.search { |s| may_rally_in? s } end + def may_agitate_in?(space) + (!space.country? && (space.fln_control? || space.fln_bases.positive?)) + end + + def agitate_spaces(spaces) + spaces.select { |s| may_agitate_in? s } + end + # March 3.3.2 # Attack 3.3.3 |