1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-24 12:59:18 +00:00

feat: add boosters to API (#737)

This commit is contained in:
2025-05-18 00:53:26 +02:00
committed by GitHub
parent 8ca40f410d
commit c809b14783
815 changed files with 3183 additions and 960 deletions

View File

@ -2,6 +2,7 @@ import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Charmander",
fr: "Salamèche",
@ -11,11 +12,13 @@ const card: Card = {
ko: "파이리",
'pt-br': "Charmander"
},
illustrator: "GIDORA",
category: "Pokemon",
hp: 60,
types: ["Fire"],
stage: "Basic",
attacks: [{
cost: ["Fire"],
name: {
@ -38,12 +41,15 @@ const card: Card = {
},
damage: "30"
}],
weaknesses: [{
type: "Water",
value: "+20"
}],
retreat: 1,
rarity: "One Star",
description: {
en: "It has a preference for hot things. When it rains, steam is said to spout from the tip of its tail.",
fr: "Il préfère ce qui est chaud. En cas de pluie,\nde la vapeur se forme autour de sa queue.",
@ -52,6 +58,8 @@ const card: Card = {
de: "Dieses Pokémon bevorzugt heiße Dinge.\nBei Regen soll seine Schwanzspitze dampfen.",
'pt-br': "Prefere coisas quentes. Quando chove, dizem\nque solta vapor pela ponta de sua cauda.",
ko: "뜨거운 것을 좋아하는 성격이다.\n비에 젖으면 꼬리 끝에서\n연기가 난다고 한다."
}
},
boosters: ["charizard"]
}
export default card