mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 18:29:19 +00:00
feat: Add the TCG Pocket cards in other languages (#734)
This commit is contained in:
@ -1,44 +1,57 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Promos-A"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Charmander"
|
||||
en: "Charmander",
|
||||
fr: "Salamèche",
|
||||
es: "Charmander",
|
||||
it: "Charmander",
|
||||
de: "Glumanda",
|
||||
ko: "파이리",
|
||||
'pt-br': "Charmander"
|
||||
},
|
||||
|
||||
illustrator: "Naoyo Kimura",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
en: "It has a preference for hot things. When it rains, steam is said to spout from the tip of its tail."
|
||||
en: "It has a preference for hot things. When it rains, steam is said to spout from the tip of its tail.",
|
||||
fr: "Il préfère ce qui est chaud. En cas de pluie,\nde la vapeur se forme autour de sa queue.",
|
||||
es: "Prefiere las cosas calientes. Dicen que cuando\nllueve le sale vapor de la punta de la cola.",
|
||||
it: "Ama le cose calde. Si dice che quando piove\ngli esca vapore dalla punta della coda.",
|
||||
de: "Dieses Pokémon bevorzugt heiße Dinge.\nBei Regen soll seine Schwanzspitze dampfen.",
|
||||
ko: "뜨거운 것을 좋아하는 성격이다.\n비에 젖으면 꼬리 끝에서\n연기가 난다고 한다.",
|
||||
'pt-br': "Prefere coisas quentes. Quando chove, dizem\nque solta vapor pela ponta de sua cauda."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Ember"
|
||||
en: "Ember",
|
||||
fr: "Flammèche",
|
||||
es: "Ascuas",
|
||||
it: "Braciere",
|
||||
de: "Glut",
|
||||
ko: "불꽃세례",
|
||||
'pt-br': "Brasa"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Fire"],
|
||||
|
||||
effect: {
|
||||
en: "Discard a Fire Energy from this Pokémon."
|
||||
en: "Discard a {R} Energy from this Pokémon.",
|
||||
fr: "Défaussez une Énergie {R} de ce Pokémon.",
|
||||
es: "Descarta 1 Energía {R} de este Pokémon.",
|
||||
it: "Rimuovi un'Energia {R} da questo Pokémon.",
|
||||
de: "Lege 1 {R}-Energie von diesem Pokémon ab.",
|
||||
ko: "이 포켓몬에서 {R}에너지를 1개 트래쉬한다.",
|
||||
'pt-br': "Descarte 1 Energia {R} deste Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
||||
export default card
|
Reference in New Issue
Block a user