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.

12 lines
229 B

  1. extends OptionButton
  2. const hero_names = [
  3. "Wallriding mfer",
  4. "WallMAKING mfer",
  5. "an ATTRACTIVE mfer",
  6. "Margarine"
  7. ]
  8. func _ready():
  9. for hero_index in range(hero_names.size()):
  10. add_item(hero_names[hero_index], hero_index)