1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

86 lines
1.2 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 '../Power Keepers'
const card: Card = {
name: {
en: "Shelgon",
fr: "Drackhaus",
de: "Draschel"
},
illustrator: "Midori Harada",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
372,
],
hp: 80,
types: [
"Colorless",
],
evolveFrom: {
en: "Bagon",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Rage",
fr: "Frénésie",
de: "Raserei"
},
effect: {
en: "Does 10 damage plus 10 more damage for each damage counter on Shelgon.",
fr: "Inflige 10 dégâts plus 10 dégâts supplémentaires pour chaque marqueur de dégât sur Drackhaus.",
de: "Dieser Angriff fügt 10 Schadenspunkte plus 10 weitere Schadenspunkte für jede Schadensmarke auf Draschel zu."
},
damage: "10+",
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Rolling Tackle",
fr: "Roulé-boulé",
de: "Rolltackle"
},
damage: 40,
},
],
weaknesses: [
{
type: "Colorless",
value: "×2"
},
],
resistances: [
{
type: "Fire",
value: "-30"
},
{
type: "Fighting",
value: "-30"
},
],
}
export default card