mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
87 lines
1.3 KiB
TypeScript
87 lines
1.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Stormfront'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Bagon",
|
|
fr: "Draby",
|
|
de: "Kindwurm"
|
|
},
|
|
|
|
illustrator: "Aya Kusube",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
371,
|
|
],
|
|
|
|
hp: 50,
|
|
|
|
types: [
|
|
"Colorless",
|
|
],
|
|
|
|
evolveFrom: {
|
|
fr: "Draby",
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Scary Face",
|
|
fr: "Grimace",
|
|
de: "Grimasse"
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If heads, the Defending Pokémon can't attack or retreat during your opponent's next turn.",
|
|
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur ne peut pas attaquer ou battre en retraite lors du prochain tour de votre adversaire.",
|
|
de: "Wirf 1 Münze. Bei \"Kopf\" kann das Verteidigende Pokémon im nächsten Zug deines Gegners weder angreifen noch sich zurückziehen."
|
|
},
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Headbutt",
|
|
fr: "Coup d'boule",
|
|
de: "Kopfnuss"
|
|
},
|
|
|
|
damage: 30,
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Colorless",
|
|
value: "+10"
|
|
},
|
|
],
|
|
|
|
resistances: [
|
|
{
|
|
type: "Fighting",
|
|
value: "-20"
|
|
},
|
|
],
|
|
|
|
retreat: 1,
|
|
|
|
description: {
|
|
fr: "Il rêve de pouvoir voler un jour. Pour l'heure, il s'entraîne en sautant du haut des falaises."
|
|
}
|
|
}
|
|
|
|
export default card
|