mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +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:
50
data/Scarlet & Violet/Paldea Evolved/087.ts
Normal file
50
data/Scarlet & Violet/Paldea Evolved/087.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldea Evolved"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Feuforêve",
|
||||
en: "Misdreavus",
|
||||
es: "Misdreavus",
|
||||
it: "Misdreavus",
|
||||
pt: "Misdreavus",
|
||||
de: "Traunfugil"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Hypnoblast",
|
||||
en: "Hypnoblast",
|
||||
es: "Hipnorrayo",
|
||||
it: "Ipnobomba",
|
||||
pt: "Borrifada Hipnótica",
|
||||
de: "Hypnoschuss"
|
||||
},
|
||||
|
||||
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."
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user