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

66 lines
911 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Lost Thunder'
const card: Card = {
name: {
en: "Shaymin",
fr: "Shaymin",
},
illustrator: "Sekio",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
492,
],
hp: 70,
types: [
"Grass",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Floral Heal",
fr: "Soin Fleuris",
},
effect: {
en: "Once during your turn (before your attack), you may heal 20 damage from your Active Grass Pokémon.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez soigner 20 dégâts à votre Pokémon Grass Actif.",
},
},
],
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Ram",
fr: "Collision",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card