1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 15:45:14 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Space-Time Smackdown/042.ts
2025-02-19 21:52:42 +01:00

45 lines
725 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Finneon"
},
illustrator: "Shigenori Negishi",
rarity: "One Diamond",
category: "Pokemon",
hp: 50,
types: ["Water"],
description: {
en: "The line running down its side can store sunlight. It shines vividly at night."
},
stage: "Basic",
attacks: [{
name: {
en: "Elegant Swim"
},
damage: 10,
cost: ["Water"],
effect: {
en: "Flip a coin. If heads, during your opponent's next turn, prevent all damage from—and effects of—attacks done to this Pokémon."
}
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card