Advertisement
Guest User

Untitled

a guest
Aug 1st, 2014
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. //Global variables
  2. var Achievements = {};
  3. var exGDTtint = "#E36C09"
  4.  
  5. //Achievements Start
  6.  
  7. Achievements.aWholeCountry = {
  8. id: "exGDT_awholecountry",
  9. title: "A Whole Country".localize("achievement title"),
  10. description: "Have over 1M fans".localize("achievement"),
  11. tint: exGDTtint,
  12. value: 30,
  13. isAchieved: function () {
  14. var check = true;
  15. check = GameManager.company.fans >= 1000000;
  16. return check;
  17. }
  18. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement