mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-05 05:09:53 +00:00
58 lines
1.6 KiB
TypeScript
58 lines
1.6 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Celestial Guardians"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Fletchling",
|
|
fr: "Passerouge",
|
|
es: "Fletchling",
|
|
it: "Fletchling",
|
|
de: "Dartiri",
|
|
'pt-br': "Fletchling",
|
|
ko: "화살꼬빈"
|
|
},
|
|
|
|
illustrator: "5ban Graphics",
|
|
rarity: "One Diamond",
|
|
category: "Pokemon",
|
|
hp: 50,
|
|
types: ["Colorless"],
|
|
|
|
description: {
|
|
en: "This Pokémon is normally calm, but once it enters battle, its hormonal balance changes and it becomes aggressive.",
|
|
fr: "Il a un tempérament généralement calme,\nmais son équilibre hormonal se modifie\nlors des combats et le rend plus agressif.",
|
|
es: "Por lo general se muestra calmado, pero, al entrar en combate,\nsu equilibrio hormonal se altera y se vuelve agresivo.",
|
|
it: "Di solito ha un'indole molto tranquilla, ma quando lotta\nil suo equilibrio ormonale cambia, rendendolo aggressivo.",
|
|
de: "Normalerweise sind Dartiri friedfertig, doch wenn\nsie kämpfen, ändert sich ihr Hormonhaushalt und\nsie werden angriffslustig.",
|
|
'pt-br': "Este Pokémon é geralmente calmo, mas quando entra\nem batalha, seu equilíbrio hormonal muda, fazendo\ncom que se torne agressivo.",
|
|
ko: "평소에는 온순하지만\n싸움에 들어가면 호르몬의\n균형이 바뀌어 공격적이게 된다."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Flap",
|
|
fr: "Battement",
|
|
es: "Aleteo",
|
|
it: "Alabattito",
|
|
de: "Flattern",
|
|
'pt-br': "Asa",
|
|
ko: "홰치기"
|
|
},
|
|
|
|
damage: 20,
|
|
cost: ["Colorless"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Lightning",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card |