1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-12 20:07:51 +00:00
Florian Bouillon 78366685f8
feat: TCG Pocket A2b (#695)
* 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>
2025-03-27 01:01:27 +01:00

44 lines
617 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Shining Revelry"
const card: Card = {
set: Set,
name: {
en: "Charmeleon"
},
illustrator: "kodama",
rarity: "Two Diamond",
category: "Pokemon",
hp: 90,
types: ["Fire"],
evolveFrom: {
en: "Charmander"
},
description: {
en: "It has a barbaric nature. In battle, it whips its fiery tail around and slashes away with sharp claws."
},
stage: "Stage1",
attacks: [{
name: {
en: "Combustion"
},
damage: 40,
cost: ["Fire", "Fire"]
}],
weaknesses: [{
type: "Water",
value: "+20"
}],
retreat: 2
}
export default card