1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +00:00

Updated Evolving Skies with attacks and other languages

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-08-28 16:54:37 +02:00
parent 90ebef01cf
commit b46b2c4fb9
194 changed files with 8779 additions and 436 deletions

View File

@ -12,14 +12,75 @@ const card: Card = {
},
name: {
en: "Fletchling"
en: "Fletchling",
fr: "Passerouge",
es: "Fletchling",
it: "Fletchling",
pt: "Fletchling",
de: "Dartiri"
},
rarity: "Common",
category: "Pokemon",
hp: 40,
types: ["Colorless"],
stage: "Basic"
stage: "Basic",
illustrator: "Sumiyoshi Kizuki",
attacks: [{
name: {
en: "Tailwind Draw",
fr: "Pioche en Poupe",
es: "Robo de Viento Afín",
it: "Pescata Ventoincoda",
pt: "Tailwind Draw",
de: "Rückenwindzug"
},
effect: {
en: "Draw a card. If you go second and its your first turn, draw 3 more cards.",
fr: "Piochez une carte. Si vous jouez en second et que cest votre premier tour, piochez 3 cartes supplémentaires.",
es: "Roba 1 carta. Si sales segundo y es tu primer turno, roba 3 cartas más.",
it: "Pesca una carta. Se inizi per secondo ed è il tuo primo turno, pesca altre tre carte.",
pt: "Draw a card. If you go second and its your first turn, draw 3 more cards.",
de: "Ziehe 1 Karte. Wenn du als Zweiter am Zug bist und es dein erster Zug ist, ziehe 3 Karten mehr."
},
cost: ["Colorless"]
}, {
name: {
en: "Surprise Attack",
fr: "Attaque Surprise",
es: "Ataque Sorpresa",
it: "Attacco a Sorpresa",
pt: "Surprise Attack",
de: "Überraschungsangriff"
},
effect: {
en: "Flip a coin. If tails, this attack does nothing.",
fr: "Lancez une pièce. Si cest pile, cette attaque ne fait rien.",
es: "Lanza 1 moneda. Si sale cruz, este ataque no hace nada.",
it: "Lancia una moneta. Se esce croce, questo attacco non ha effetto.",
pt: "Flip a coin. If tails, this attack does nothing.",
de: "Wirf 1 Münze. Bei Zahl hat diese Attacke keine Auswirkungen."
},
damage: 20,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1
}
export default card