mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-10 16:01:59 +00:00
feat: Add Twilight Masquerade (#491)
This commit is contained in:
63
data/Scarlet & Violet/Twilight Masquerade/045.ts
Normal file
63
data/Scarlet & Violet/Twilight Masquerade/045.ts
Normal file
@@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Twilight Masquerade"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Seaking",
|
||||
fr: "Poissoroy",
|
||||
es: "Seaking",
|
||||
it: "Seaking",
|
||||
pt: "Seaking",
|
||||
de: "Golking"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Water"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water"],
|
||||
|
||||
name: {
|
||||
en: "Peck Off",
|
||||
fr: "Picpic Piqueur",
|
||||
es: "Picotear",
|
||||
it: "Sbeccata",
|
||||
pt: "Arrancar com Bico",
|
||||
de: "Lospicken"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Before doing damage, discard all Pokémon Tools from your opponent's Active Pokémon.",
|
||||
fr: "Avant d'infliger des dégâts, défaussez tous les Outils Pokémon du Pokémon Actif de votre adversaire.",
|
||||
es: "Antes de infligir daño, descarta todas las Herramientas Pokémon del Pokémon Activo de tu rival.",
|
||||
it: "Prima di infliggere danni, scarta tutte le carte Oggetto Pokémon dal Pokémon attivo del tuo avversario.",
|
||||
pt: "Antes de causar dano, descarte todas as Ferramentas Pokémon do Pokémon Ativo do seu oponente.",
|
||||
de: "Bevor du Schaden zufügst, lege alle Pokémon-Ausrüstungen vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Horn Drill",
|
||||
fr: "Empal'Korne",
|
||||
es: "Perforador",
|
||||
it: "Perforcorno",
|
||||
pt: "Chifre Broca",
|
||||
de: "Hornbohrer"
|
||||
},
|
||||
|
||||
damage: 90
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user