1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 01:07:53 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

86 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Fletchling",
fr: "Passerouge",
es: "Fletchling",
it: "Fletchling",
pt: "Fletchling",
de: "Dartiri"
},
rarity: "Common",
category: "Pokemon",
hp: 40,
types: ["Colorless"],
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