1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

73 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Roaring Skies'
const card: Card = {
name: {
en: "Fletchling",
fr: "Passerouge",
es: "Fletchling",
it: "Fletchling",
pt: "Fletchling",
de: "Dartiri"
},
illustrator: "Kanako Eo",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
661,
],
hp: 40,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Acrobatics",
fr: "Acrobatie",
es: "Acróbata",
it: "Acrobazia",
pt: "Acrobático",
de: "Akrobatik"
},
effect: {
en: "Flip 2 coins. This attack does 10 more damage for each heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 10 dégâts supplémentaires pour chaque côté face.",
es: "Lanza 2 monedas. Este ataque hace 10 puntos de daño más por cada cara.",
it: "Lancia due volte una moneta. Ogni volta che esce testa, questo attacco infligge 10 danni in più.",
pt: "Jogue 2 moedas. Este ataque causa 10 de danos adicionais para cada cara.",
de: "Wirf 2 Münzen. Dieser Angriff fügt 10 weitere Schadenspunkte mal der Anzahl \"Kopf\" zu."
},
damage: "10+",
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 1,
}
export default card