mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
81 lines
1.3 KiB
TypeScript
81 lines
1.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Platinum'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Shaymin",
|
|
fr: "Shaymin",
|
|
de: "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",
|
|
de: "Energy Blow"
|
|
},
|
|
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.",
|
|
de: "Does 10 damage plus 10 more damage for each Energy attached to Shaymin."
|
|
},
|
|
damage: "10+",
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Grass",
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Aromatherapy",
|
|
fr: "Aromathérapi",
|
|
de: "Aromatherapy"
|
|
},
|
|
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.",
|
|
de: "Remove 2 damage counters from each of your Pokémon."
|
|
},
|
|
damage: 40,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Fire",
|
|
value: "+20"
|
|
},
|
|
],
|
|
resistances: [
|
|
{
|
|
type: "Water",
|
|
value: "-20"
|
|
},
|
|
],
|
|
retreat: 1,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|