mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
feat: Add Scarlet & violet three first sets (#446)
Some checks failed
Build / build (push) Failing after 59s
Some checks failed
Build / build (push) Failing after 59s
This commit is contained in:
48
data/Scarlet & Violet/Paldea Evolved/160.ts
Normal file
48
data/Scarlet & Violet/Paldea Evolved/160.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldea Evolved"
|
||||
|
||||
const card: Card = {
|
||||
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"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user