Exemplo n.º 1
0
#pragma warning restore 0649
    public void Initialize(string name, float ativ, float atx, float baseAttack, float totalAttack)
    {
        ImagesFillers.AddMonsterHead(MonsterHead, name);
        ATIV.text        = LanguagesFillers.FormatAbilityValue(ativ, true);
        ATX.text         = LanguagesFillers.FormatAbilityValue(atx, true);
        AttackBase.text  = baseAttack.ToString();
        AttackTotal.text = totalAttack.ToString();
    }
Exemplo n.º 2
0
#pragma warning restore 0649

    public void Initialize(string name, float dfx, float atvii, float baseDefense, float totalDefense)
    {
        ImagesFillers.AddMonsterHead(MonsterHead, name);
        DFX.text          = LanguagesFillers.FormatAbilityValue(dfx, true);
        ATVII.text        = LanguagesFillers.FormatAbilityValue(atvii, false);
        DefenseBase.text  = baseDefense.ToString();
        DefenseTotal.text = totalDefense.ToString();
    }