1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon afd3a664ae
Fixed most POP sets (#99)
Signed-off-by: Avior <github@avior.me>
2021-10-26 17:23:45 +02:00

77 lines
1006 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../POP Series 6'
const card: Card = {
name: {
en: "Manaphy",
},
illustrator: "Atsuko Nishida",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
490,
],
hp: 70,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Call for Family",
},
effect: {
en: "Search your deck for a Basic Pokémon and put it onto your Bench. Shuffle your deck afterward.",
},
},
{
cost: [
"Water",
"Water",
],
name: {
en: "Aqua Ring",
},
effect: {
en: "Switch Manaphy with 1 of your Benched Pokémon.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Lightning",
value: "+20"
},
],
description: {
en: "Born on a cold seafloor, it will swim great distances to return to its birthplace."
},
retreat: 1,
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card