A team game with an emphasis on movement (with no shooting), inspired by Overwatch and Zineth
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
688 B

  1. extends OptionButton
  2. const hero_names = [
  3. "INDUSTRIA",
  4. "IRA",
  5. "LUSSURIA",
  6. "CARITAS",
  7. "PAZIENZA",
  8. ]
  9. const hero_text = [
  10. "DILIGENCE.\n\nWallride by jumping on walls.\n\nYour speed builds immensely as your Switch Charge increases.",
  11. "WRATH.\n\nPress E and click (or just click) to build a wall.\n\nRight click to destroy one.",
  12. "LUST.\n\nYou attract nearby heroes.\n\nPress E to switch to repelling them.",
  13. "GENEROSITY.\n\nMake contact with a friend to boost their speed.\n\nPress E to separate.",
  14. "PATIENCE.\n\nHold left mouse button on an enemy to slow them down.",
  15. ]
  16. func _ready():
  17. for hero_index in range(hero_names.size()):
  18. add_item(hero_names[hero_index], hero_index)