mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-25 09:29:55 +00:00
75 lines
1.5 KiB
TypeScript
75 lines
1.5 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Fusion Strike"
|
|
|
|
const card: Card = {
|
|
dexId: [226],
|
|
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",
|
|
retreat: 1,
|
|
regulationMark: "E",
|
|
illustrator: "Saya Tsuruta",
|
|
|
|
description: {
|
|
en: "As it majestically swims, it doesn't care if Remoraid attach to it to scavenge for its leftovers."
|
|
},
|
|
|
|
attacks: [{
|
|
cost: ["Water"],
|
|
|
|
name: {
|
|
en: "Bounce",
|
|
fr: "Rebond",
|
|
de: "Sprungfeder",
|
|
es: "Bote",
|
|
pt: "Ricochete",
|
|
it: "Rimbalzo"
|
|
},
|
|
|
|
damage: 20,
|
|
|
|
effect: {
|
|
en: "You may switch this Pokémon with 1 of your Benched Pokémon.",
|
|
fr: "Vous pouvez échanger ce Pokémon contre l'un de vos Pokémon de Banc.",
|
|
de: "Du kannst dieses Pokémon gegen 1 Pokémon auf deiner Bank austauschen.",
|
|
es: "Puedes cambiar este Pokémon por 1 de tus Pokémon en Banca.",
|
|
pt: "Você pode trocar este Pokémon por 1 dos seus Pokémon no Banco.",
|
|
it: "Puoi scambiare questo Pokémon con uno della tua panchina."
|
|
}
|
|
}, {
|
|
cost: ["Colorless", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Wave Splash",
|
|
fr: "Grosse Vague",
|
|
de: "Wellenplatscher",
|
|
es: "Chapoteo Ondulante",
|
|
pt: "Onda Borrifante",
|
|
it: "Schizzi d'Onda"
|
|
},
|
|
|
|
damage: 80
|
|
}],
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |