mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 17:09: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:
63
data/Scarlet & Violet/Paldea Evolved/091.ts
Normal file
63
data/Scarlet & Violet/Paldea Evolved/091.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldea Evolved"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Mesmérella",
|
||||
en: "Gothorita",
|
||||
es: "Gothorita",
|
||||
it: "Gothorita",
|
||||
pt: "Gothorita",
|
||||
de: "Hypnomorba"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Psychic"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Contrôleur d'Esprit",
|
||||
en: "Mind Bend",
|
||||
es: "Fusión Mental",
|
||||
it: "Fusione Mentale",
|
||||
pt: "Dobra Mentes",
|
||||
de: "Gedankenverbiegung"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
|
||||
en: "Your opponent's Active Pokémon is now Confused.",
|
||||
es: "El Pokémon Activo de tu rival pasa a estar Confundido.",
|
||||
it: "Il Pokémon attivo del tuo avversario viene confuso.",
|
||||
pt: "O Pokémon Ativo do seu oponente agora está Confuso.",
|
||||
de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt."
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}, {
|
||||
cost: ["Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Super Psy",
|
||||
en: "Super Psy Bolt",
|
||||
es: "Superrayo Psi",
|
||||
it: "Superpsico",
|
||||
pt: "Super-raio Psíquico",
|
||||
de: "Super-Psischlag"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user