Files
core/hwe/sammo/GameUnitConstraint/ReqTech.php
T
2025-01-21 15:26:29 +00:00

25 lines
533 B
PHP

<?php
namespace sammo\GameUnitConstraint;
use sammo\General;
use sammo\KVStorage;
class ReqTech extends BaseGameUnitConstraint {
public function __construct(protected int $reqTech)
{
}
public function test(General $general, array $ownCities, array $ownRegions, int $relativeYear, int $tech, array $nationAux): bool
{
if ($tech < $this->reqTech) {
return false;
}
}
public function getInfo(): string
{
return "기술력 {$this->reqTech} 이상 필요";
}
}