mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19:18 +00:00
feat: Add Twilight Masquerade (#491)
This commit is contained in:
61
data/Scarlet & Violet/Twilight Masquerade/079.ts
Normal file
61
data/Scarlet & Violet/Twilight Masquerade/079.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Twilight Masquerade"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Clefable",
|
||||
fr: "Mélodelfe",
|
||||
es: "Clefable",
|
||||
it: "Clefable",
|
||||
pt: "Clefable",
|
||||
de: "Pixi"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Psychic"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Metronome",
|
||||
fr: "Métronome",
|
||||
es: "Metrónomo",
|
||||
it: "Metronomo",
|
||||
pt: "Metrônomo",
|
||||
de: "Metronom"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Choose 1 of your opponent's Active Pokémon's attacks and use it as this attack.",
|
||||
fr: "Choisissez l'une des attaques du Pokémon Actif de votre adversaire et utilisez-la en tant que cette attaque.",
|
||||
es: "Elige uno de los ataques del Pokémon Activo de tu rival y úsalo para este ataque.",
|
||||
it: "Scegli un attacco del Pokémon attivo del tuo avversario e usalo al posto di questo attacco.",
|
||||
pt: "Escolha 1 dos ataques do Pokémon Ativo do seu oponente e use-o como este ataque.",
|
||||
de: "Wähle 1 Attacke des Aktiven Pokémon deines Gegners und setze sie als diese Attacke ein."
|
||||
}
|
||||
}, {
|
||||
cost: ["Psychic", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Magical Shot",
|
||||
fr: "Coup Magique",
|
||||
es: "Disparo Mágico",
|
||||
it: "Magicolpo",
|
||||
pt: "Tiro Mágico",
|
||||
de: "Magischer Schuss"
|
||||
},
|
||||
|
||||
damage: 100
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user