mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-06 13:29:55 +00:00
61 lines
1.6 KiB
TypeScript
61 lines
1.6 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Spearow",
|
|
fr: "Piafabec",
|
|
es: "Spearow",
|
|
it: "Spearow",
|
|
de: "Habitak",
|
|
'pt-br': "Spearow",
|
|
ko: "깨비참"
|
|
},
|
|
|
|
illustrator: "Shiburingaru",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Colorless"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Peck",
|
|
fr: "Picpic",
|
|
es: "Picotazo",
|
|
it: "Beccata",
|
|
de: "Pikser",
|
|
'pt-br': "Bicada",
|
|
ko: "쪼기"
|
|
},
|
|
|
|
damage: "20"
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Lightning",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
rarity: "One Diamond",
|
|
|
|
description: {
|
|
en: "Its reckless nature leads it to stand up to others—even large Pokémon—if it has to protect its territory.",
|
|
fr: "Un Pokémon téméraire qui n'hésite pas\nà affronter des Pokémon plus gros que lui\npour protéger son territoire.",
|
|
es: "Su temperamento temerario hace que no\ndude en enfrentarse a rivales mucho más\ngrandes a la hora de defender su territorio.",
|
|
it: "Temerario di natura, per difendere\nil proprio territorio non esita a lanciarsi\nanche contro avversari più grandi di lui.",
|
|
de: "Wenn es um die Verteidigung seines Reviers\ngeht, schreckt das draufgängerische Habitak\nselbst vor großen Pokémon nicht zurück.",
|
|
'pt-br': "Sua natureza descuidada leva Spearow a\nencarar até Pokémon maiores quando\nprecisa proteger o seu território.",
|
|
ko: "자신의 영역을 지키기 위해서라면\n상대가 큰 포켓몬이라도\n덤벼드는 무모한 성질을 가졌다."
|
|
},
|
|
|
|
boosters: ["charizard"]
|
|
}
|
|
|
|
export default card
|