mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
* feat: TCG Pocket A2b Signed-off-by: Avior <git@avior.me> * fix:implement new rarities Signed-off-by: Avior <git@avior.me> * fix:implement new rarities Signed-off-by: Avior <git@avior.me> --------- Signed-off-by: Avior <git@avior.me>
45 lines
631 B
TypeScript
45 lines
631 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Shining Revelry"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Paldean Clodsire ex"
|
|
},
|
|
|
|
illustrator: "REND",
|
|
rarity: "Two Star",
|
|
category: "Pokemon",
|
|
hp: 160,
|
|
types: ["Darkness"],
|
|
|
|
evolveFrom: {
|
|
en: "Paldean Wooper"
|
|
},
|
|
|
|
stage: "Stage1",
|
|
suffix: "EX",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Venoshock"
|
|
},
|
|
|
|
damage: 60,
|
|
cost: ["Darkness", "Darkness"],
|
|
|
|
effect: {
|
|
en: "If your opponent's Active Pokémon is Poisoned, this attack does 60 more damage."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fighting",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 3
|
|
}
|
|
|
|
export default card |