Пример #1
0
 public Crowbar(IRandomiser randomiser)
     : base(name: "Crowbar",
            description: "Ask Gordon Freeman",
            baseValue: 40,
            weight: 2,
            durability: 1,
            actions: new List <Action>
 {
     new MeleAttack(1, "Swing", 1, 3, DamageType.BluntForce(), 0.05, 0.05, randomiser),
     new MeleAttack(2, "Powerful Swing", 2, 8, DamageType.BluntForce(), 0.07, 0.09, randomiser)
 },
            isTwoHanded: true)
 {
 }