mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09:19 +00:00
Added BW translation (#65)
* Added basic translation IT will need a second checkup by another source as attacks are not correcly ordered Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Removed bugged file Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
This commit is contained in:
@ -4,22 +4,32 @@ import Set from '../Dark Explorers'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Empoleon",
|
||||
fr: "Pingoléon",
|
||||
es: "Empoleon",
|
||||
it: "Empoleon",
|
||||
pt: "Empoleon",
|
||||
de: "Impoleon"
|
||||
},
|
||||
|
||||
illustrator: "Naoki Saito",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
395,
|
||||
],
|
||||
|
||||
hp: 140,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Prinplup",
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [
|
||||
@ -27,12 +37,23 @@ const card: Card = {
|
||||
type: "Ability",
|
||||
name: {
|
||||
en: "Diving Draw",
|
||||
fr: "Plonge et Pioche",
|
||||
es: "Robo Buceo",
|
||||
it: "Pescafonda",
|
||||
pt: "Saque Mergulho",
|
||||
de: "Unterwasserzieher"
|
||||
},
|
||||
effect: {
|
||||
en: "Once during your turn (before your attack), you may discard a card from your hand. If you do, draw 2 cards.",
|
||||
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez défausser une carte de votre main. Dans ce cas, piochez 2 cartes.",
|
||||
es: "Una vez durante tu turno (antes de tu ataque), puedes descartar una carta de tu mano. Si lo haces, roba 2 cartas.",
|
||||
it: "Una sola volta durante il tuo turno, prima di attaccare, puoi scartare una delle carte che hai in mano. Se lo fai, pesca due carte.",
|
||||
pt: "Uma vez na sua vez de jogar (antes de atacar), você pode descartar um card da sua mão. Se fizer isso, compre 2 cards.",
|
||||
de: "Einmal während deines Zuges (vor deinem Angriff) kannst du 1 Karte von deiner Hand auf deinen Ablagestapel legen. Wenn du das machst, ziehe 2 Karten."
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -48,6 +69,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
@ -55,10 +77,7 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user