| line | stmt | bran | cond | sub | pod | time | code | 
| 1 |  |  |  |  |  |  | package BalanceOfPower::Commands::DiplomaticPressure; | 
| 2 |  |  |  |  |  |  | $BalanceOfPower::Commands::DiplomaticPressure::VERSION = '0.400115'; | 
| 3 | 13 |  |  | 13 |  | 56 | use Moo; | 
|  | 13 |  |  |  |  | 22 |  | 
|  | 13 |  |  |  |  | 62 |  | 
| 4 |  |  |  |  |  |  |  | 
| 5 |  |  |  |  |  |  | extends 'BalanceOfPower::Commands::TargetNation'; | 
| 6 |  |  |  |  |  |  |  | 
| 7 |  |  |  |  |  |  | sub get_available_targets | 
| 8 |  |  |  |  |  |  | { | 
| 9 | 0 |  |  | 0 | 0 | 0 | my $self = shift; | 
| 10 | 0 |  |  |  |  | 0 | my @targets = $self->SUPER::get_available_targets(); | 
| 11 | 0 |  |  |  |  | 0 | my $nation = $self->actor; | 
| 12 | 0 | 0 |  |  |  | 0 | @targets = grep { (! $self->world->is_under_influence($_) | 
|  | 0 |  |  |  |  | 0 |  | 
| 13 |  |  |  |  |  |  | || $self->world->is_under_influence($_) ne $nation) } @targets; | 
| 14 | 0 |  |  |  |  | 0 | return @targets; | 
| 15 |  |  |  |  |  |  | } | 
| 16 |  |  |  |  |  |  |  | 
| 17 |  |  |  |  |  |  |  | 
| 18 |  |  |  |  |  |  | sub IA | 
| 19 |  |  |  |  |  |  | { | 
| 20 | 5 |  |  | 5 | 0 | 8 | my $self = shift; | 
| 21 | 5 |  |  |  |  | 15 | my $actor = $self->get_nation(); | 
| 22 | 5 |  |  |  |  | 44 | my @hates = $self->world->shuffle("Choosing target for diplomatic pressure for ". $self->actor, $self->world->get_nations_with_status($self->actor, ['HATE'])); | 
| 23 | 5 | 100 |  |  |  | 15 | if(@hates) | 
| 24 |  |  |  |  |  |  | { | 
| 25 | 3 |  |  |  |  | 16 | return "DIPLOMATIC PRESSURE ON " . $hates[0]; | 
| 26 |  |  |  |  |  |  | } | 
| 27 |  |  |  |  |  |  | else | 
| 28 |  |  |  |  |  |  | { | 
| 29 | 2 |  |  |  |  | 6 | return undef; | 
| 30 |  |  |  |  |  |  | } | 
| 31 |  |  |  |  |  |  | } | 
| 32 |  |  |  |  |  |  | 1; |