1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 01:07:53 +00:00

66 lines
713 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Promos'
const card: Card = {
name: {
en: "Tapu Fini",
},
illustrator: undefined,
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
788,
],
hp: 120,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Razor Fin",
},
damage: 20,
},
{
cost: [
"Water",
"Water",
"Colorless",
],
name: {
en: "Nature Wave",
},
effect: {
en: "If your opponent has any Ultra Beasts in play, this attack can be used for {C}.",
},
damage: 100,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
}
export default card