Нема описа

pokedex_string.s 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. .align 2
  2. .thumb
  3. .text
  4. .global pdex_str_title
  5. pdex_str_title:
  6. .string LAN_DE "Amitec Pokédex"
  7. .string LAN_EN "Amitec Pokédex"
  8. .global pdex_str_seen
  9. pdex_str_seen:
  10. .string LAN_DE "Ges.:"
  11. .string LAN_EN "Seen:"
  12. .global pdex_str_caught
  13. pdex_str_caught:
  14. .string LAN_DE "Gef.:"
  15. .string LAN_EN "Caught:"
  16. .global pdex_str_size
  17. pdex_str_size:
  18. .string LAN_DE "Größe:"
  19. .string LAN_EN "Size:"
  20. .global pdex_str_weight
  21. pdex_str_weight:
  22. .string LAN_DE "Gewicht:"
  23. .string LAN_EN "Weight:"
  24. .global pdex_str_size_unit
  25. pdex_str_size_unit:
  26. .string LAN_DE "m"
  27. .string LAN_EN "m"
  28. .global pdex_str_weight_unit
  29. pdex_str_weight_unit:
  30. .string LAN_DE "kg"
  31. .string LAN_EN "kg"
  32. .global pdex_str_comma
  33. pdex_str_comma:
  34. .string LAN_DE ","
  35. .string LAN_EN ","
  36. .global pdex_str_empty
  37. pdex_str_empty:
  38. .string LAN_DE "----------"
  39. .string LAN_EN "----------"
  40. .global pdex_str_form_alola
  41. pdex_str_form_alola:
  42. .string LAN_DE " (Alola)"
  43. .string LAN_DE " (Alola)"
  44. .align 2
  45. .global pdex_str_regions
  46. pdex_str_regions:
  47. .word pdex_str_empty
  48. .word pdex_str_kanto
  49. .word pdex_str_jotho
  50. .word pdex_str_hoeen
  51. .word pdex_str_sinnoh
  52. .word pdex_str_unova
  53. .word pdex_str_kalos
  54. .word pdex_str_alola
  55. pdex_str_kanto:
  56. .string LAN_DE "Kanto"
  57. .string LAN_EN "Kanto"
  58. pdex_str_jotho:
  59. .string LAN_DE "Johto"
  60. .string LAN_EN "Johto"
  61. pdex_str_hoeen:
  62. .string LAN_DE "Hoenn"
  63. .string LAN_EN "Hoenn"
  64. pdex_str_sinnoh:
  65. .string LAN_DE "Sinnoh"
  66. .string LAN_EN "Sinnoh"
  67. pdex_str_unova:
  68. .string LAN_DE "Einall"
  69. .string LAN_EN " Unova"
  70. pdex_str_kalos:
  71. .string LAN_DE "Kalos"
  72. .string LAN_EN "Kalos"
  73. pdex_str_alola:
  74. .string LAN_DE "Alola"
  75. .string LAN_EN "Alola"