1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-13 12:26:15 +00:00

74 lines
1.1 KiB
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 '../Primal Clash'
const card: Card = {
name: {
en: "Masquerain",
fr: "Maskadra",
},
illustrator: "Kanako Eo",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
284,
],
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Surskit",
fr: "Arakdo",
},
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Spiral Gyration",
fr: "Rotation Spirale",
},
effect: {
en: "Your opponent's Active Pokémon is now Confused. Switch this Pokémon with 1 of your Benched Pokémon.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus. Échangez ce Pokémon avec l'un de vos Pokémon de Banc.",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Air Slash",
fr: "Lame d'Air",
},
effect: {
en: "Discard an Energy attached to this Pokémon.",
fr: "Défaussez une Énergie attachée à ce Pokémon.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card