blob: fa07805bf6ad2472bad3374a9e561909b21f10ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
#! /usr/bin/env ruby
# frozen_string_literal: true
module ColonialTwilight
# general rules governing operations and activities
module FLNRules
# Rally 3.3.1
def may_rally_in?(space)
(space.sector? || (space.city? && !space.support?) || (space.country? && space.independent?))
end
def rally_spaces(board)
board.search { |s| may_rally_in? s }
end
# March 3.3.2
# Attack 3.3.3
def may_attack_in?(space)
(space.fln_cubes.positive? && space.gov.positive?)
end
def attack_spaces(board)
board.search { |s| may_attack_in? s }
end
# Terror 3.3.4
def may_terror_in?(space)
(!space.country? && !space.pop.zero? && space.fln_underground.positive?)
end
def terror_spaces(board)
board.search { |s| may_terror_in? s }
end
# Extort 4.3.1
def may_extort_in?(space)
(!space.pop.zero? && space.fln_underground.positive? && space.fln_control? &&
(space.country? ? space.independent? : true))
end
def extort_spaces(board)
board.search { |s| may_extort_in? s }
end
# Subvert 4.3.2
def may_subvert_in?(space)
(space.fln_underground.positive? && space.algerian_cubes.positive?)
end
def subvert_spaces(board)
board.search { |s| may_subvert_in? s }
end
# Ambush 4.3.3
def may_ambush_in?(space)
may_attack_in?(space)
end
def ambush_spaces(board)
board.search { |s| may_ambush_in? s }
end
# OAS 5.3.1
def may_oas_in?(space)
(!space.country? && !space.pop.zero? && !space.terror.positive?)
end
def oas_spaces(board)
board.search { |s| may_oas_in? s }
end
end
end
|