mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-28 10:49:55 +00:00
* Fix Triumphant Light card data and formatting Fix card data including attack damage modifiers, Palkia and Dalgia Origin forme names and incorrect weakness for Giratina. Also remove unnecessary HTML formatting from card descriptions * Remove HTML anchor tags around referenced Pokemon names --------- Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
53 lines
785 B
TypeScript
53 lines
785 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Triumphant Light"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Shaymin"
|
|
},
|
|
|
|
illustrator: "Mizue",
|
|
rarity: "Three Diamond",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Colorless"],
|
|
|
|
description: {
|
|
en: "It can dissolve toxins in the air to instantly transform ruined land into a lush field of flowers."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
abilities: [{
|
|
type: "Ability",
|
|
|
|
name: {
|
|
en: "Sky Support"
|
|
},
|
|
|
|
effect: {
|
|
en: "As long as this Pokémon is on your Bench, your Active Basic Pokémon's Retreat Cost is 1 less."
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Flap"
|
|
},
|
|
|
|
damage: 30,
|
|
cost: ["Colorless", "Colorless"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Lightning",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card
|