1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +00:00

75 lines
1.0 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 '../Promos'
const card: Card = {
name: {
en: "Malamar",
fr: "Sepiatroce",
},
illustrator: "5ban Graphics",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
687,
],
hp: 90,
types: [
"Darkness",
],
evolveFrom: {
en: "Inkay",
fr: "Sepiatop",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Contrary",
},
effect: {
en: "If this Pokémon is your Active Pokémon, whenever your opponent flips a coin during his or her turn, treat it as tails.",
},
},
],
attacks: [
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Conform",
fr: "Stop Θ",
},
effect: {
en: "If you have the same number of cards in your hand as your opponent, your opponent's Active Pokémon is now Confused.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 2,
}
export default card