Exemplo n.º 1
0
        public SpellInstancer()
        {
            Spell HADOUKEN = new Spell("HADOUKEN!")
            {
                AttackString       = "-a- sends a Hadouken towards -r-",
                Damage             = 1000,
                HitChance          = 10,
                particleCastString = "~t"
            };

            HADOUKEN.RegisterCheck();
            Spells.Add(HADOUKEN);
        }