1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-21 07:39:54 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

72 lines
943 B
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",
},
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",
},
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.",
},
},
],
attacks: [
{
cost: [
"Water",
"Water",
"Colorless",
],
name: {
en: "Surf",
fr: "Surf",
},
damage: 100,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 3,
}
export default card