mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-28 02:40:11 +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>
45 lines
705 B
TypeScript
45 lines
705 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Triumphant Light"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Sudowoodo"
|
|
},
|
|
|
|
illustrator: "Yuriko Akase",
|
|
rarity: "One Star",
|
|
category: "Pokemon",
|
|
hp: 80,
|
|
types: ["Fighting"],
|
|
|
|
description: {
|
|
en: "Although it always pretends to be a tree, its composition appears more similar to rock than to vegetation."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Fighting Headbutt"
|
|
},
|
|
|
|
damage: 20,
|
|
cost: ["Fighting"],
|
|
|
|
effect: {
|
|
en: "If your opponent's Active Pokémon is a Pokémon ex, this attack does 30 more damage."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Grass",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 2
|
|
}
|
|
|
|
export default card
|