summaryrefslogtreecommitdiff
path: root/src/Model/Unit/Merchant.php
diff options
context:
space:
mode:
authorDaniel Weipert <git@mail.dweipert.de>2024-01-11 13:15:02 +0100
committerDaniel Weipert <git@mail.dweipert.de>2024-01-11 13:15:02 +0100
commit09caff2b2a06d1f8ac8203567035a21c612165f9 (patch)
tree999be04ff0a418a33e438be9befc8c9297e383f4 /src/Model/Unit/Merchant.php
parent6301f63bd348109b8693a922f02e16d49205a8fd (diff)
send resources
Diffstat (limited to 'src/Model/Unit/Merchant.php')
-rw-r--r--src/Model/Unit/Merchant.php33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/Model/Unit/Merchant.php b/src/Model/Unit/Merchant.php
deleted file mode 100644
index be0b25e..0000000
--- a/src/Model/Unit/Merchant.php
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
-
-namespace App\Model\Unit;
-
-use App\Model\Unit;
-use App\Model\Village;
-
-class Merchant extends Unit
-{
- public string $buildingType = 'Marketplace';
- public int $travelTime = 1;
- public int $populationDemandFactor = 1;
-
- public array $resourceRequirementsBase = [
- 'wood' => 200,
- 'clay' => 200,
- 'iron' => 200,
- 'food' => 200,
- ];
- public array $resourceRequirementsFactor = [
- 'wood' => 2.0,
- 'clay' => 2.0,
- 'iron' => 2.0,
- 'food' => 2.0,
- ];
-
- public static function getResourceCapabilities(Village|int $village): int
- {
- $marketplace = Village::getBuilding($village->id ?? $village, 'Marketplace');
-
- return $marketplace->level * 100;
- }
-}