mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02: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>
40 lines
576 B
TypeScript
40 lines
576 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Shining Revelry"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Charmander"
|
|
},
|
|
|
|
illustrator: "Souichirou Gunjima",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Fire"],
|
|
|
|
description: {
|
|
en: "It has a preference for hot things. When it rains, steam is said to spout from the tip of its tail."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Combustion"
|
|
},
|
|
|
|
damage: 20,
|
|
cost: ["Fire"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Water",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
rarity: "One Shiny"
|
|
}
|
|
|
|
export default card |