@@ -28,6 +28,8 @@ pub enum CustomAction {
28
28
payment : ResourcePile ,
29
29
} ,
30
30
AbsolutePower ,
31
+ ForcedLabor ,
32
+ CivilRights ,
31
33
ArtsInfluenceCultureAttempt ( InfluenceCultureAttempt ) ,
32
34
VotingIncreaseHappiness ( IncreaseHappiness ) ,
33
35
FreeEconomyCollect ( Collect ) ,
@@ -43,6 +45,8 @@ pub enum CustomAction {
43
45
pub enum CustomActionType {
44
46
ConstructWonder ,
45
47
AbsolutePower ,
48
+ ForcedLabor ,
49
+ CivilRights ,
46
50
ArtsInfluenceCultureAttempt ,
47
51
VotingIncreaseHappiness ,
48
52
FreeEconomyCollect ,
@@ -65,6 +69,12 @@ impl CustomAction {
65
69
payment,
66
70
} => construct_wonder ( game, player_index, city_position, & wonder, payment) ,
67
71
CustomAction :: AbsolutePower => game. actions_left += 1 ,
72
+ CustomAction :: ForcedLabor => {
73
+ // we check that the action was played
74
+ }
75
+ CustomAction :: CivilRights => {
76
+ game. players [ player_index] . gain_resources ( ResourcePile :: mood_tokens ( 3 ) ) ;
77
+ }
68
78
CustomAction :: ArtsInfluenceCultureAttempt ( c) => {
69
79
influence_culture_attempt ( game, player_index, & c) ;
70
80
}
@@ -88,6 +98,8 @@ impl CustomAction {
88
98
match self {
89
99
CustomAction :: ConstructWonder { .. } => CustomActionType :: ConstructWonder ,
90
100
CustomAction :: AbsolutePower => CustomActionType :: AbsolutePower ,
101
+ CustomAction :: ForcedLabor => CustomActionType :: ForcedLabor ,
102
+ CustomAction :: CivilRights => CustomActionType :: CivilRights ,
91
103
CustomAction :: ArtsInfluenceCultureAttempt ( _) => {
92
104
CustomActionType :: ArtsInfluenceCultureAttempt
93
105
}
@@ -117,6 +129,12 @@ impl CustomAction {
117
129
game. players [ player_index] . wonder_cards . push ( wonder) ;
118
130
}
119
131
CustomAction :: AbsolutePower => game. actions_left -= 1 ,
132
+ CustomAction :: ForcedLabor => {
133
+ // we check that the action was played
134
+ }
135
+ CustomAction :: CivilRights => {
136
+ game. players [ player_index] . lose_resources ( ResourcePile :: mood_tokens ( 3 ) ) ;
137
+ }
120
138
CustomAction :: ArtsInfluenceCultureAttempt ( _) => panic ! ( "Action can't be undone" ) ,
121
139
CustomAction :: VotingIncreaseHappiness ( i) => {
122
140
undo_increase_happiness (
@@ -149,6 +167,10 @@ impl CustomAction {
149
167
format ! ( "{player_name} paid {payment} to construct the {wonder} wonder in the city at {city_position}" ) ,
150
168
CustomAction :: AbsolutePower =>
151
169
format ! ( "{player_name} paid 2 mood tokens to get an extra action using Forced Labor" ) ,
170
+ CustomAction :: ForcedLabor =>
171
+ format ! ( "{player_name} paid 1 mood token to treat Angry cities as neutral" ) ,
172
+ CustomAction :: CivilRights =>
173
+ format ! ( "{player_name} gained 3 mood tokens using Civil Rights" ) ,
152
174
CustomAction :: ArtsInfluenceCultureAttempt ( c) =>
153
175
format ! ( "{} using Arts" , format_cultural_influence_attempt_log_item( game, player_name, c) ) ,
154
176
CustomAction :: VotingIncreaseHappiness ( i) =>
@@ -170,20 +192,21 @@ impl CustomActionType {
170
192
#[ must_use]
171
193
pub fn action_type ( & self ) -> ActionType {
172
194
match self {
173
- CustomActionType :: ConstructWonder => ActionType :: default ( ) ,
174
195
CustomActionType :: AbsolutePower => {
175
196
ActionType :: free_and_once_per_turn ( ResourcePile :: mood_tokens ( 2 ) )
176
197
}
198
+ CustomActionType :: CivilRights
199
+ | CustomActionType :: Sports
200
+ | CustomActionType :: ConstructWonder => ActionType :: default ( ) ,
177
201
CustomActionType :: ArtsInfluenceCultureAttempt => {
178
202
ActionType :: free_and_once_per_turn ( ResourcePile :: culture_tokens ( 1 ) )
179
203
}
180
204
CustomActionType :: VotingIncreaseHappiness => {
181
205
ActionType :: free ( ResourcePile :: mood_tokens ( 1 ) )
182
206
}
183
- CustomActionType :: FreeEconomyCollect => {
207
+ CustomActionType :: FreeEconomyCollect | CustomActionType :: ForcedLabor => {
184
208
ActionType :: free_and_once_per_turn ( ResourcePile :: mood_tokens ( 1 ) )
185
209
}
186
- CustomActionType :: Sports => ActionType :: new ( false , false , ResourcePile :: empty ( ) ) ,
187
210
CustomActionType :: Taxes => ActionType :: once_per_turn ( ResourcePile :: mood_tokens ( 1 ) ) ,
188
211
CustomActionType :: Theaters => ActionType :: free_and_once_per_turn ( ResourcePile :: empty ( ) ) ,
189
212
}
0 commit comments