mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
* fix: Add SV08 Surging Sparks card variants * fix: Fix validate by adding 'abbreviation' to Set interface
66 lines
1.7 KiB
TypeScript
66 lines
1.7 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Surging Sparks"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Mantine",
|
|
fr: "Démanta",
|
|
es: "Mantine",
|
|
it: "Mantine",
|
|
pt: "Mantine",
|
|
de: "Mantax"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 110,
|
|
types: ["Water"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Water"],
|
|
|
|
name: {
|
|
en: "Wave Splash",
|
|
fr: "Grosse Vague",
|
|
es: "Chapoteo Ondulante",
|
|
it: "Schizzi d'Onda",
|
|
pt: "Onda Borrifante",
|
|
de: "Wellenplatscher"
|
|
},
|
|
|
|
damage: 30
|
|
}, {
|
|
cost: ["Water", "Colorless"],
|
|
|
|
name: {
|
|
en: "Aqua Dive",
|
|
fr: "Plongée Aquatique",
|
|
es: "Embestida Aqua",
|
|
it: "Tuffo Acquatico",
|
|
pt: "Mergulho Aquático",
|
|
de: "Flutentaucher"
|
|
},
|
|
|
|
effect: {
|
|
en: "This attack does 50 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
|
fr: "Cette attaque inflige 50 dégâts à l'un des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
|
es: "Este ataque hace 50 puntos de daño a uno de los Pokémon de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
|
|
it: "Questo attacco infligge 50 danni a uno dei Pokémon del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.",
|
|
pt: "Este ataque causa 50 pontos de dano a 1 dos Pokémon do seu oponente. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)",
|
|
de: "Diese Attacke fügt 1 Pokémon deines Gegners 50 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
|
|
}
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card
|