mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-19 02:39:18 +00:00
feat: Add the TCG Pocket cards in other languages (#734)
This commit is contained in:
@ -1,13 +1,16 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Genetic Apex"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Blastoise ex"
|
||||
en: "Blastoise ex",
|
||||
fr: "Tortank-ex",
|
||||
es: "Blastoise ex",
|
||||
it: "Blastoise-ex",
|
||||
de: "Turtok-ex",
|
||||
ko: "거북왕 ex",
|
||||
'pt-br': "Blastoise ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA CG Works",
|
||||
category: "Pokemon",
|
||||
hp: 180,
|
||||
@ -17,36 +20,45 @@ const card: Card = {
|
||||
en: "Wartortle"
|
||||
},
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Surf"
|
||||
en: "Surf",
|
||||
fr: "Surf",
|
||||
es: "Surf",
|
||||
it: "Surf",
|
||||
de: "Surfer",
|
||||
ko: "파도타기",
|
||||
'pt-br': "Surfar"
|
||||
},
|
||||
|
||||
damage: "40"
|
||||
}, {
|
||||
cost: ["Water", "Water", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Hydro Bazooka"
|
||||
en: "Hydro Bazooka",
|
||||
fr: "Aquazooka",
|
||||
es: "Hidrobazuca",
|
||||
it: "Idrobazooka",
|
||||
de: "Hydro-Bazooka",
|
||||
ko: "하이드로 바주카",
|
||||
'pt-br': "Bazuca d'Água"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "If this Pokémon has at least 2 extra W Energy attached, this attack does 60 more damage."
|
||||
en: "If this Pokémon has at least 2 extra {W} Energy attached, this attack does 60 more damage.",
|
||||
fr: "Si ce Pokémon a au moins 2 Énergies {W} de plus, cette attaque inflige 60 dégâts supplémentaires.",
|
||||
es: "Si este Pokémon tiene por lo menos 2 Energías {W} adicionales unidas a él, este ataque hace 60 puntos de daño más.",
|
||||
it: "Se questo Pokémon ha almeno 2 Energie {W} extra assegnate, questo attacco infligge 60 danni in più.",
|
||||
de: "Wenn an dieses Pokémon mindestens 2 extra {W}-Energien angelegt sind, fügt diese Attacke 60 Schadenspunkte mehr zu.",
|
||||
ko: "{W}에너지 2개가 추가로 붙어 있다면 60데미지를 추가한다.",
|
||||
'pt-br': "Se este Pokémon tiver pelo menos 2 Energia {W} extra ligada a ele, este ataque causará 60 pontos de dano a mais."
|
||||
},
|
||||
|
||||
damage: "100+"
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
rarity: "Two Star"
|
||||
}
|
||||
|
||||
export default card
|
||||
export default card
|
Reference in New Issue
Block a user