Пример #1
0
        public override void set_images(Game_Unit unit)
        {
            base.set_images(unit);

            var stats = new Calculations.Stats.BattlerStats(unit.id);

            Def.text  = stats.def().ToString();
            Res.text  = stats.res().ToString();
            Dod.text  = stats.dodge().ToString();
            ASpd.text = unit.atk_spd().ToString();
        }
Пример #2
0
        public Unit_Page_4(Game_Unit unit)
        {
            var stats = new Calculations.Stats.BattlerStats(unit.id);

            // If the unit has a weapon equipped
            bool has_weapon = stats.has_weapon;
            // If said weapon is not a staff
            bool non_staff = stats.has_non_staff_weapon;

            // Atk
            Atk     = new RightAdjustedText();
            Atk.loc = new Vector2(24, 0);
            Atk.SetFont(Config.UI_FONT, Global.Content, "Blue");
            Atk.text = !non_staff ? "--" : stats.dmg().ToString();
            // Atk
            Hit     = new RightAdjustedText();
            Hit.loc = new Vector2(56, 0);
            Hit.SetFont(Config.UI_FONT, Global.Content, "Blue");
            Hit.text = !non_staff ? "--" : stats.hit().ToString();
            // Avoid
            Avoid     = new RightAdjustedText();
            Avoid.loc = new Vector2(88, 0);
            Avoid.SetFont(Config.UI_FONT, Global.Content, "Blue");
            Avoid.text = stats.avo().ToString();
            // Crit
            Crit     = new RightAdjustedText();
            Crit.loc = new Vector2(120, 0);
            Crit.SetFont(Config.UI_FONT, Global.Content, "Blue");
            Crit.text = !non_staff ? "--" : stats.crt().ToString();
            // Dod
            Dod     = new RightAdjustedText();
            Dod.loc = new Vector2(144, 0);
            Dod.SetFont(Config.UI_FONT, Global.Content, "Blue");
            Dod.text = stats.dodge().ToString();
            // AS
            AS     = new RightAdjustedText();
            AS.loc = new Vector2(176, 0);
            AS.SetFont(Config.UI_FONT, Global.Content, "Blue");
            AS.text = unit.atk_spd().ToString();
            // Rng
            Rng = new RightAdjustedText();
            Rng.SetFont(Config.UI_FONT, Global.Content, "Blue");
            if (!has_weapon)
            {
                Rng.loc  = new Vector2(212, 0);
                Rng.text = "--";
            }
            else
            {
                int min_range = unit.min_range();
                int max_range = unit.max_range();
                if (unit.actor.weapon.Mag_Range)
                {
                    Rng.loc  = new Vector2(216, 0);
                    Rng.text = "Mag/2";
                }
                else if (min_range == max_range)
                {
                    Rng.loc  = new Vector2(208, 0);
                    Rng.text = min_range.ToString();
                }
                else
                {
                    Rng.loc  = new Vector2(216, 0);
                    Rng.text = min_range.ToString() + "-" + max_range.ToString();
                }
            }
        }