Jump to content

Search the Community

Showing results for tags 'javascript'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Important Links
    • Serenes Forest Code of Conduct
    • Mistakes or Errors on the Site
  • Important Forums
    • Announcements
    • Member Feedback
    • Site Content
  • General Forums
    • Introductions
    • General
    • Far from the Forest...
    • Creative
    • Fan Projects
    • General Gaming
  • Fire Emblem Forums
    • General Fire Emblem
    • NES and SNES Era
    • GameBoy Advance Era
    • GameCube and Wii Era
    • Nintendo DS Era
    • Nintendo 3DS Era
    • Fire Emblem: Three Houses
    • Fire Emblem: Engage
    • Fire Emblem Heroes
    • Related Games
  • Miscellaneous
    • Forum Graveyard

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Jabber


Skype


Yahoo


ICQ


Website URL


MSN


AIM


Interests


Location

Found 1 result

  1. Fire Emblem Heroes (JavaScript Database) BETA Library of the game data of the Fire Emblem Heroes. Install <script src="feh.js"></script> Used var Anna = new Hero('Anna'); alert(Anna.Type); // Commander alert(Anna.MoveType); // Infantry var Azura = new Hero('Azura'); alert(Azura.FiveStars.MinAtk[1]); // 5 (4-5-6) All Commands Hero.Name - return name. Hero.Gender - return gender. Hero.Type - return type. Hero.MoveType - return move type. Hero.WeaponType - return weapon type. Hero.ImageURL - return url images. {Portrait, Attack, Special, Injured} var Anna = new Hero('Anna'); alert(Anna.ImageURL.Attack); // https://github.com/ranford98/fehjs/blob/master/src/Anna/Full_Attack_Anna.png Hero.TwoStars, ThreeStars, FourStars, FiveStars - return stats and skills. {MinHP, MinAtk, MinSpd, MinDef, MinRes, MaxHP, MaxAtk, MaxSpd, MaxDef, MaxRes, Skills{Weapons, Assists, Specials, Passives}} var Anna = new Hero('Anna'); alert(Anna.ThreeStars.MinAtk); // 6 alert(Anna.ThreeStars.Skills.Passives); // Array('Spur Res 1', 'Spur Res 2', 'Vantage 1') Examples var Anna = new Hero("Anna"); var Sharena = new Hero("Sharena"); if (Anna.ThreeStars.MinAtk < Sharena.ThreeStars.MinAtk) { alert("Anna: " + Anna.ThreeStars.MinAtk + " | Sharena: " + Sharena.ThreeStars.MinAtk + "\nSharena Win!"); // Anna: 6 | Sharena: 7 // Sharena Win! } GitHub: https://github.com/Ranford98/fehjs
×
×
  • Create New...