1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-19 02:39: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: "Blastoise ex",
fr: "Tortank-ex",
@ -11,15 +12,19 @@ const card: Card = {
ko: "거북왕 ex",
'pt-br': "Blastoise ex"
},
illustrator: "PLANETA CG Works",
category: "Pokemon",
hp: 180,
types: ["Water"],
stage: "Stage2",
evolveFrom: {
en: "Wartortle"
},
suffix: "EX",
attacks: [{
cost: ["Water", "Colorless"],
name: {
@ -54,11 +59,14 @@ const card: Card = {
},
damage: "100+"
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 3,
rarity: "Two Star"
rarity: "Two Star",
boosters: ["pikachu"]
}
export default card