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

70 lines
1014 B
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 '../Roaring Skies'
const card: Card = {
name: {
en: "Shelgon",
fr: "Drackhaus",
},
illustrator: "sui",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
372,
],
hp: 80,
types: [
"Dragon",
],
evolveFrom: {
en: "Bagon",
fr: "Draby",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Exoskeleton",
fr: "Exosquelette",
},
effect: {
en: "Any damage done to this Pokémon by attacks is reduced by 10 (after applying Weakness and Resistance).",
fr: "Tous les dégâts infligés à ce Pokémon par des attaques sont réduits de 10 (après application de la Faiblesse et de la Résistance).",
},
},
],
attacks: [
{
cost: [
"Fire",
"Water",
"Colorless",
],
name: {
en: "Rolling Tackle",
fr: "Roulé-Boulé",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fairy",
value: "×2"
},
],
retreat: 3,
}
export default card