for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace AardsGerds\Game\Inventory\Weapon\ShortSword;
use AardsGerds\Game\Build\Attribute\Damage;
use AardsGerds\Game\Build\Attribute\Strength;
use AardsGerds\Game\Build\Talent\WeaponMastery\WeaponMasteryLevel;
use AardsGerds\Game\Inventory\Coin;
final class RustyShortSword extends ShortSword
{
public function __construct()
parent::__construct(
'Rusty Short Sword',
'Blade is covered in little rust, but it seems to be usable.',
new Coin(1),
new Coin(10),
new Damage(10),
WeaponMasteryLevel::novice(),
new Strength(5),
);
}