1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 18:59:53 +00:00

76 lines
1.1 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Platinum'
const card: Card = {
name: {
en: "Shaymin",
fr: "Shaymin",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
492,
],
hp: 80,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
name: {
en: "Energy Blow",
fr: "Coup d'énergie",
},
effect: {
en: "Does 10 damage plus 10 more damage for each Energy attached to Shaymin.",
fr: "Inflige 10 dégâts plus 10 dégâts supplémentaires pour chaque Énergie attachée à Shaymin.",
},
damage: 10,
},
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Aromatherapy",
fr: "Aromathérapi",
},
effect: {
en: "Remove 2 damage counters from each of your Pokémon.",
fr: "Retirez à chacun de vos Pokémon 2 marqueurs de dégât.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fire",
value: "+20"
},
],
resistances: [
{
type: "Water",
value: "-20"
},
],
retreat: 1,
}
export default card