diff options
author | IIMarckus <iimarckus@gmail.com> | 2018-06-02 04:27:31 -0600 |
---|---|---|
committer | IIMarckus <iimarckus@gmail.com> | 2018-06-02 04:27:31 -0600 |
commit | 5d2473f767b431910da023a6e37ad3239dcdd575 (patch) | |
tree | 6200e65d9bd7e8fa8429c62d3907f21587ab74df /de/text/type_names.asm | |
parent | f31a2ed69f7368d88a0a1aed5c35aa8cb34af6b3 (diff) |
Start of German translation. Needs work.multilang
Diffstat (limited to 'de/text/type_names.asm')
-rwxr-xr-x | de/text/type_names.asm | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/de/text/type_names.asm b/de/text/type_names.asm new file mode 100755 index 00000000..96933927 --- /dev/null +++ b/de/text/type_names.asm @@ -0,0 +1,48 @@ +TypeNames: + + dw .Normal + dw .Fighting + dw .Flying + dw .Poison + dw .Ground + dw .Rock + dw .Bird + dw .Bug + dw .Ghost + + dw .Normal + dw .Normal + dw .Normal + dw .Normal + dw .Normal + dw .Normal + dw .Normal + dw .Normal + dw .Normal + dw .Normal + dw .Normal + + dw .Fire + dw .Water + dw .Grass + dw .Electric + dw .Psychic + dw .Ice + dw .Dragon + +.Normal: db "NORMAL@" +.Fighting: db "KAMPF@" +.Flying: db "FLUG@" +.Poison: db "GIFT@" +.Fire: db "FEUER@" +.Water: db "WASSER@" +.Grass: db "PFLANZE@" +.Electric: db "ELEKTRO@" +.Psychic: db "PSYCHO@" +.Ice: db "EIS@" +.Ground: db "BODEN@" +.Rock: db "GESTEIN@" +.Bird: db "VOGEL@" +.Bug: db "KÄFER@" +.Ghost: db "GEIST@" +.Dragon: db "DRACHEN@" |