1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-01 03:59:54 +00:00

59 lines
804 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 '../Sun & Moon'
const card: Card = {
name: {
en: "Masquerain",
fr: "Maskadra",
},
illustrator: "miki kudo",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
284,
],
hp: 90,
types: [
"Grass",
],
evolveFrom: {
en: "Surskit",
fr: "Arakdo",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Struggle Bug",
fr: "Survinsecte",
},
effect: {
en: "Move an Energy from your opponent's Active Pokémon to 1 of their Benched Pokémon.",
fr: "Déplacez une Énergie du Pokémon Actif de votre adversaire vers lun de ses Pokémon de Banc.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card