summaryrefslogtreecommitdiff
path: root/src/Model/Unit/WoodCutter.php
blob: d8c2c428e8543b7606786875da038d20a96ea230 (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 WoodCutter extends Unit
{
  public string $buildingType = 'WoodCutter';
  public int $travelTime = 1;
  public int $populationDemandFactor = 1;
  public array $resourceRequirements = [
    'wood' => 2.0,
    'clay' => 1.0,
    'iron' => 1.0,
    'food' => 2.0,
  ];
}