1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00

67 lines
862 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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Shiinotic",
},
illustrator: "Misa Tsutsui",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
hp: 110,
types: [
"Psychic",
],
evolveFrom: {
en: "Morelull",
},
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Flickering Light",
},
effect: {
en: "Flip a coin. If heads, during your opponents next turn, the Defending Pokémon cant attack.",
},
damage: 30,
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Fear the Forest",
},
effect: {
en: "If Glimwood Tangle is in play, this attack does 60 more damage.",
},
damage: "60+",
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 2,
}
export default card