1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-21 15:49:55 +00:00

66 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Shining Legends'
const card: Card = {
name: {
en: "Manaphy",
fr: "Manaphy",
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
490,
],
hp: 60,
types: [
"Water",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Blessings of the Deep",
fr: "Bénédiction des Profondeurs",
},
effect: {
en: "Once during your turn (before your attack), you may heal 20 damage from 1 of your Pokémon that has any Water Energy attached to it.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez soigner 20 dégâts à lun de vos Pokémon auquel de lÉnergie Water est attachée.",
},
},
],
attacks: [
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Wave Splash",
fr: "Grosse Vague",
},
damage: 30,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card