1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +00:00

feat: Add Twilight Masquerade (#491)

This commit is contained in:
2024-05-24 08:48:44 +02:00
committed by GitHub
parent d48971c95e
commit 8a4a93af8f
227 changed files with 13148 additions and 0 deletions

View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../Twilight Masquerade"
const card: Card = {
set: Set,
name: {
en: "Slugma",
fr: "Limagma",
es: "Slugma",
it: "Slugma",
pt: "Slugma",
de: "Schneckmag"
},
rarity: "Common",
category: "Pokemon",
hp: 80,
types: ["Fire"],
stage: "Basic",
attacks: [{
cost: ["Fire", "Colorless"],
name: {
en: "Hot Magma",
fr: "Magma Ardent",
es: "Magma Caliente",
it: "Magma Bollente",
pt: "Magma Cálido",
de: "Heißes Magma"
},
effect: {
en: "Your opponent's Active Pokémon is now Burned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé.",
es: "El Pokémon Activo de tu rival pasa a estar Quemado.",
it: "Il Pokémon attivo del tuo avversario viene bruciato.",
pt: "O Pokémon Ativo do seu oponente agora está Queimado.",
de: "Das Aktive Pokémon deines Gegners ist jetzt verbrannt."
},
damage: 20
}],
retreat: 3,
regulationMark: "H"
}
export default card