summaryrefslogtreecommitdiff
path: root/src/Model/Unit/Diplomat.php
blob: e263cd32c9dc65524d752b2530cd8715d519febf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

namespace App\Model\Unit;

use App\Model\Unit;

class Diplomat extends Unit
{
  public string $buildingType = 'Embassy';
  public int $travelTime = 1;
  public int $populationDemandFactor = 1;
  public array $resourceRequirements = [
    'wood' => 5.0,
    'clay' => 5.0,
    'iron' => 5.0,
    'food' => 5.0,
  ];
}