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

67 lines
931 B
TypeScript
Raw Permalink 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 '../Skyridge'
const card: Card = {
name: {
en: "Slugma",
de: "Schneckmag"
},
illustrator: "Naoyo Kimura",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
218,
],
hp: 50,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Tackle",
de: "Tackle"
},
damage: 10,
},
{
cost: [
"Fire",
],
name: {
en: "Scorching Lava",
de: "Glühendheiße Lava"
},
effect: {
en: "Discard a Energy card attached to Slugma in order to use this attack. The Defending Pokémon is now Burned.",
de: "Lege eine an Schneckmag angelegte -Energiekarte auf deinen Ablagestapel, um diesen Angriff zu verwenden. Das verteidigende Pokémon ist jetzt verbrannt."
},
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card