1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

100 lines
1.7 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 '../Triumphant'
const card: Card = {
name: {
en: "Drapion",
fr: "Drascore",
de: "Piondragi"
},
illustrator: "Sumiyoshi Kizuki",
rarity: "Rare Holo",
category: "Pokemon",
set: Set,
dexId: [
452,
],
hp: 100,
types: [
"Darkness",
],
evolveFrom: {
en: "Skorupi",
fr: "Rapion",
},
stage: "Stage1",
attacks: [
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Toxic Fang",
fr: "Croc toxik",
de: "Giftiger Reißzahn"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned. Put 2 damage counters instead of 1 on that Pokémon between turns.",
fr: "Lancez une pièce. Si cest face, le Pokémon Défenseur est maintenant Empoisonné. Placez 2 marqueurs de dégât au lieu dun seul sur ce Pokémon entre deux tours.",
de: "Wirf eine Münze. Bei \"Kopf\" ist das Verteidigende Pokémon jetzt vergiftet. Lege zwischen den Zügen 2 Schadensmarken anstelle von 1 Schadensmarke auf dieses Pokémon."
},
damage: 40,
},
{
cost: [
"Darkness",
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Land Crush",
fr: "Écrasterre",
de: "Schollenbrecher"
},
damage: 80,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 3,
description: {
en: "It attacks people and Pokémon that cross the desert. This has only furthered its bad reputation."
},
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card