Advertisement
Guest User

Untitled

a guest
Apr 30th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1. inv.addItem(createItem("Monarchy", Arrays.asList(
  2. ChatColor.GOLD + "The Kingdom of " + fed,
  3. "",
  4. ChatColor.GRAY + "Effect: " + ChatColor.GREEN + "Luck",
  5. ChatColor.GRAY + "Effect: " + ChatColor.RED + "Mining Fatigue"
  6. )));
  7.  
  8. inv.addItem(createItem("Republic", Arrays.asList(
  9. ChatColor.GOLD + "The Democratic Republic of " + fed,
  10. "",
  11. ChatColor.GRAY + "Effect: " + ChatColor.GREEN + "Speed",
  12. ChatColor.GRAY + "Effect: " + ChatColor.RED + "Weakness"
  13. )));
  14.  
  15. inv.addItem(createItem("Democracy", Arrays.asList(
  16. ChatColor.GOLD + "The United Federation of " + fed,
  17. "",
  18. ChatColor.GRAY + "Effect: " + ChatColor.GREEN + "Reduced Hunger"
  19. )));
  20.  
  21. inv.addItem(createItem("Communism", Arrays.asList(
  22. ChatColor.GOLD + "The People's Republic of " + fed,
  23. "",
  24. ChatColor.GRAY + "Effect: " + ChatColor.GREEN + "Haste (Mining Speed)",
  25. ChatColor.GRAY + "Effect: " + ChatColor.RED + "Increased Hunger"
  26. )));
  27.  
  28. inv.addItem(createItem("Imperialism"));
  29.  
  30. inv.addItem(createItem("Caliphate", Arrays.asList(
  31. ChatColor.GOLD + "The Totalitarian State of " + fed,
  32. "",
  33. ChatColor.GRAY + "Effect: " + ChatColor.GREEN + "Fire Resistance",
  34. ChatColor.GRAY + "Effect: " + ChatColor.RED + "Increased Hunger"
  35. )));
  36.  
  37.  
  38. inv.addItem(createItem("Ecclesiology", Arrays.asList(
  39. ChatColor.GOLD + "The Holy See of " + fed,
  40. "",
  41. ChatColor.GRAY + "Effect: " + ChatColor.GREEN + "Regeneration",
  42. ChatColor.GRAY + "Effect: " + ChatColor.RED + "Weakness"
  43. )));
  44.  
  45. inv.addItem(createItem("Socialism"));
  46.  
  47. inv.addItem(createItem("Nazism", Arrays.asList(
  48. ChatColor.GOLD + "Das Reich von " + fed,
  49. "",
  50. ChatColor.GRAY + "Effect: " + ChatColor.GREEN + "Haste (Mining Speed)",
  51. ChatColor.GRAY + "Effect: " + ChatColor.RED + "Increased Hunger"
  52. )));
  53.  
  54. inv.addItem(createItem("Confederacy"));
  55.  
  56. inv.addItem(createItem("Despotism", Arrays.asList(
  57. ChatColor.GOLD + "The Totalitarian State of " + fed,
  58. "",
  59. ChatColor.GRAY + "Effect: " + ChatColor.GREEN + "Damage Resistance",
  60. ChatColor.GRAY + "Effect: " + ChatColor.RED + "Increased Hunger"
  61. )));
  62.  
  63. inv.addItem(createItem("Militarism", Arrays.asList(
  64. ChatColor.GOLD + "The Unitary Militant State of " + fed,
  65. "",
  66. ChatColor.GRAY + "Effect: " + ChatColor.GREEN + "Increased Damage"
  67. ChatColor.GRAY + "Effect: " + ChatColor.RED + "Increased Hunger"
  68. )));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement