1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

66 lines
856 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../DP Black Star Promos'
const card: Card = {
name: {
en: "Glameow",
},
illustrator: "Mitsuhiro Arita",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
431,
],
hp: 50,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Charm",
},
effect: {
en: "During your opponent's next turn, any damage done by attacks from the Defending Pokémon is reduced by 20 (before applying Weakness and Resistance).",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Pose",
},
effect: {
en: "Flip a coin. If tails, this attack does nothing.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fighting",
value: "+10"
},
],
}
export default card