mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-04 05:11:58 +00:00
feat: add Celestial Guardians (#716)
This commit is contained in:
56
data/Pokémon TCG Pocket/Celestial Guardians/096.ts
Normal file
56
data/Pokémon TCG Pocket/Celestial Guardians/096.ts
Normal file
@@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Celestial Guardians"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Conkeldurr"
|
||||
},
|
||||
|
||||
illustrator: "kawayoo",
|
||||
rarity: "Three Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 150,
|
||||
types: ["Fighting"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Gurdurr"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "Concrete mixed by Conkeldurr is much more durable than normal concrete, even when the compositions of the two materials are the same."
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Guts"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "If this Pokémon would be Knocked Out by damage from an attack, flip a coin. If heads, this Pokémon is not Knocked Out, and its remaining HP becomes 10."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Mega Punch"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
cost: ["Fighting", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Psychic",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user