1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

64 lines
898 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 '../Team Rocket Returns'
const card: Card = {
name: {
en: "Mantine",
},
illustrator: "Miki Tanaka",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
226,
],
hp: 70,
types: [
"Water",
],
stage: "Basic",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Ripples",
},
effect: {
en: "Once during your turn (before your attack), you may remove 1 damage counter from 1 of your Pokémon (excluding Mantine). This power can't be used if Mantine is affected by a Special Condition.",
},
},
],
attacks: [
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Aqua Slash",
},
effect: {
en: "Mantine can't attack during your next turn.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card