1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00
TCGdex [Bot] 7e3cf7aa08
editor: fix Paldea Evolved variants (#510)
Co-authored-by: Aviortheking <git@avior.me>
2024-07-03 16:28:15 +02:00

53 lines
1007 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldea Evolved"
const card: Card = {
dexId: [287],
set: Set,
name: {
fr: "Parecool",
en: "Slakoth",
es: "Slakoth",
it: "Slakoth",
pt: "Slakoth",
de: "Bummelz"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Colorless"],
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
fr: "Bâillement",
en: "Yawn",
es: "Bostezo",
it: "Sbadiglio",
pt: "Bocejo",
de: "Gähner"
},
effect: {
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
en: "Your opponent's Active Pokémon is now Asleep.",
es: "El Pokémon Activo de tu rival pasa a estar Dormido.",
it: "Il Pokémon attivo del tuo avversario viene addormentato.",
pt: "O Pokémon Ativo do seu oponente agora está Adormecido.",
de: "Das Aktive Pokémon deines Gegners schläft jetzt."
}
}],
retreat: 2,
regulationMark: "G",
variants: {
holo: false
}
}
export default card