1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 16:42:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

88 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Lost Thunder'
const card: Card = {
name: {
en: "Mantine",
fr: "Démanta",
es: "Mantine",
it: "Mantine",
pt: "Mantine",
de: "Mantax"
},
illustrator: "Sanosuke Sakuma",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
226,
],
hp: 120,
types: [
"Water",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Mantine Surf",
fr: "Surf Démanta",
es: "Surfeo Mantine",
it: "Surf Mantine",
pt: "Surfe Mantine",
de: "Mantax-Surfen"
},
effect: {
en: "If this Pokémon has any Energy attached to it, it has no Retreat Cost.",
fr: "Si de lÉnergie est attachée à ce Pokémon, il na pas de Coût de Retraite.",
es: "Si este Pokémon tiene alguna Energía unida a él, no tiene ningún Coste de Retirada.",
it: "Se questo Pokémon ha delle Energie assegnate, non ha costo di ritirata.",
pt: "Se este Pokémon tiver alguma Energia ligada a ele, não terá custo de Recuo.",
de: "Wenn an dieses Pokémon mindestens 1 Energie angelegt ist, hat es keine Rückzugskosten."
},
},
],
attacks: [
{
cost: [
"Water",
"Water",
"Colorless",
],
name: {
en: "Surf",
fr: "Surf",
es: "Surf",
it: "Surf",
pt: "Surfar",
de: "Surfer"
},
damage: 100,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 3,
}
export default card