Esempio n. 1
0
        protected CreatureModifier2(Game game, Creature2 creature)
        {
            this.game     = game ?? throw new ArgumentNullException(nameof(game));
            this.creature = creature ?? throw new ArgumentNullException(nameof(creature));

            game.Queries += Handle;
        }
Esempio n. 2
0
 public IncreaseDefenseModifier(Game game, Creature2 creature) : base(game, creature)
 {
 }
Esempio n. 3
0
 public DoubleAttackModifier2(Game game, Creature2 creature) : base(game, creature)
 {
 }