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