1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 10:59:54 +00:00

44 lines
677 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Triumphant Light"
const card: Card = {
set: Set,
name: {
en: "Phione"
},
illustrator: "AKIRA EGAWA",
rarity: "Two Diamond",
category: "Pokemon",
hp: 60,
types: ["Water"],
description: {
en: "When the water warms, they inflate the flotation sac<br />on their heads and drift languidly on the sea<br />in packs."
},
stage: "Basic",
attacks: [{
name: {
en: "Water Pulse"
},
damage: 40,
cost: ["Water", "Water"],
effect: {
en: "Your opponent's Active Pokémon is now Asleep."
}
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card