public Summoner(SummCreatures creatures, MagicT magicType, MagicA magicArtefacts, string name, int age, int level, int health, Race race) : base(magicType, magicArtefacts, name, age, level, health, race) { Creatures = creatures; }
public Magician(MagicT magicType, MagicA magicArtefacts, string name, int age, int level, int health, Race race) : base(name, age, level, health, race) { MagicT = magicType; MagicA = magicArtefacts; }