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

71 lines
1.2 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Majestic Dawn'
const card: Card = {
name: {
en: "Phione",
fr: "Phione",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
489,
],
hp: 70,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Charm",
fr: "Charme",
},
effect: {
en: "During your opponent's next turn, any damage done by attacks from the Defending Pokémon is reduced by 20 (before applying Weakness and Resistance).",
fr: "Lors du prochain tour de votre adversaire, tous dégâts infligés par des attaques du Pokémon Défenseur sont réduits de 20 (avant application de la Faiblesse et de la Résistance).",
},
},
{
cost: [
"Water",
"Water",
],
name: {
en: "Whirlpool",
fr: "Siphon",
},
effect: {
en: "Flip a coin. If heads, discard an Energy card attached to the Defending Pokémon.",
fr: "Lancez une pièce. Si c'est face, défaussez une carte Énergie attachée au Pokémon Défenseur.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Lightning",
value: "+10"
},
],
retreat: 1,
}
export default card