Example #1
0
        public Being(MetaBeing meta, int team, Battle battle, int x, int y)
        {
            MetaBeing        = meta;
            Name             = MetaBeing.Name;
            SkillTreeFilling = MetaBeing.SkillTreeFilling;
            Fist             = MetaBeing.Fist;
            Inventory        = MetaBeing.Inventory;

            _team = team;

            AddToBattle(battle, x, y);

            foreach (var m in Mods)
            {
                m.Affect(Stats);
            }

            HP     = MaxHP;
            Skills = MetaBeing.Skills;
        }
Example #2
0
 public MetaBeing(string name)
 {
     Name             = name;
     SkillTreeFilling = new SkillTreeFiller(SkillTree);
     Inventory        = new PersonalInventory(Fist);
 }