1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-06 22:31:57 +00:00

feat: Add A3a - Extradimensional Crisis (#752)

This commit is contained in:
2025-05-29 16:18:14 +02:00
committed by GitHub
parent 082bb77f13
commit eb93ab4124
104 changed files with 4494 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../Extradimensional Crisis"
const card: Card = {
set: Set,
name: {
en: "Claydol"
},
illustrator: "Satoshi Shirai",
rarity: "Two Diamond",
category: "Pokemon",
hp: 100,
types: ["Fighting"],
evolveFrom: {
en: "Baltoy"
},
description: {
en: "This mysterious Pokémon started life as an ancient\nclay figurine made over 20,000 years ago."
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
en: "Heal Block"
},
effect: {
en: "Pokémon (both yours and your opponent's) can't be healed."
}
}],
attacks: [{
name: {
en: "Power Beam"
},
damage: 50,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "+20"
}],
retreat: 2
}
export default card