mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09:19 +00:00
feat: Add Prismatic Evolutions (#637)
This commit is contained in:
50
data/Scarlet & Violet/Prismatic Evolutions/039.ts
Normal file
50
data/Scarlet & Violet/Prismatic Evolutions/039.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Prismatic Evolutions"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Aromatisse",
|
||||
fr: "Cocotine",
|
||||
es: "Aromatisse",
|
||||
pt: "Aromatisse",
|
||||
it: "Aromatisse",
|
||||
de: "Parfinesse"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Psychic"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Perfume Press",
|
||||
fr: "Pression Entêtante",
|
||||
es: "Presión Perfume",
|
||||
pt: "Apertão Perfumado",
|
||||
it: "Profumopressa",
|
||||
de: "Duftdruck"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Confused.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
|
||||
es: "El Pokémon Activo de tu rival pasa a estar Confundido.",
|
||||
pt: "O Pokémon Ativo do seu oponente agora está Confuso.",
|
||||
it: "Il Pokémon attivo del tuo avversario viene confuso.",
|
||||
de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt."
|
||||
},
|
||||
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user