diff options
author | Daniel Weipert <git@mail.dweipert.de> | 2024-01-08 15:10:10 +0100 |
---|---|---|
committer | Daniel Weipert <git@mail.dweipert.de> | 2024-01-08 15:10:10 +0100 |
commit | 82875448c485d26375ed6dea4e64e940f6e10f74 (patch) | |
tree | ff2580447429309824e7d64401ad75e7f756e45e /src/Model/Unit/Diplomat.php | |
parent | b21316248572cb27ed1f504529ad6680a473022e (diff) |
gemini
Diffstat (limited to 'src/Model/Unit/Diplomat.php')
-rw-r--r-- | src/Model/Unit/Diplomat.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/Model/Unit/Diplomat.php b/src/Model/Unit/Diplomat.php index e263cd3..baee88a 100644 --- a/src/Model/Unit/Diplomat.php +++ b/src/Model/Unit/Diplomat.php @@ -9,7 +9,14 @@ class Diplomat extends Unit public string $buildingType = 'Embassy'; public int $travelTime = 1; public int $populationDemandFactor = 1; - public array $resourceRequirements = [ + + public array $resourceRequirementsBase = [ + 'wood' => 500, + 'clay' => 500, + 'iron' => 500, + 'food' => 500, + ]; + public array $resourceRequirementsFactor = [ 'wood' => 5.0, 'clay' => 5.0, 'iron' => 5.0, |