mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
91 lines
1.2 KiB
TypeScript
91 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Stormfront'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Shelgon",
|
|
fr: "Drackhaus",
|
|
de: "Draschel"
|
|
},
|
|
|
|
illustrator: "Tomokazu Komiya",
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
372,
|
|
],
|
|
|
|
hp: 90,
|
|
|
|
types: [
|
|
"Colorless",
|
|
],
|
|
|
|
evolveFrom: {
|
|
en: "Bagon",
|
|
fr: "Draby",
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Body Slam",
|
|
fr: "Plaquage",
|
|
de: "Bodyslam"
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
|
|
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.",
|
|
de: "Wirf 1 Münze. Bei \"Kopf\" ist das Verteidigende Pokémon jetzt gelähmt."
|
|
},
|
|
damage: 20,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Rollout",
|
|
fr: "Roulade",
|
|
de: "Walzer"
|
|
},
|
|
|
|
damage: 50,
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Colorless",
|
|
value: "+20"
|
|
},
|
|
],
|
|
|
|
resistances: [
|
|
{
|
|
type: "Fighting",
|
|
value: "-20"
|
|
},
|
|
],
|
|
|
|
retreat: 2,
|
|
|
|
description: {
|
|
fr: "Ses cellules ont commencé à changer dans sa robuste coquille. Il la perd en évoluant."
|
|
}
|
|
}
|
|
|
|
export default card
|