1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-04 05:11:58 +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",
fr: "Tortank",
@@ -11,14 +12,17 @@ const card: Card = {
ko: "거북왕",
'pt-br': "Blastoise"
},
illustrator: "Nurikabe",
category: "Pokemon",
hp: 150,
types: ["Water"],
stage: "Stage2",
evolveFrom: {
en: "Wartortle"
},
attacks: [{
cost: ["Water", "Colorless"],
name: {
@@ -41,12 +45,15 @@ const card: Card = {
},
damage: "80+"
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 3,
rarity: "Three Diamond",
description: {
en: "It crushes its foe under its heavy body to cause fainting. In a pinch, it will withdraw inside its shell.",
fr: "Il écrase ses adversaires de tout son poids\npour leur faire perdre connaissance.\nIl rentre dans sa carapace s'il se sent en danger.",
@@ -55,6 +62,8 @@ const card: Card = {
de: "Es begräbt seine Gegner mit seinem enormen\nKörpergewicht. Wenn es in einer aussichtslosen\nLage steckt, zieht es sich in seinen Panzer zurück.",
'pt-br': "Esmaga seus inimigos com seu corpo pesado\naté que desmaiem. Quando está em apuros,\nse esconde dentro do seu casco.",
ko: "무거운 몸으로 상대를\n덮쳐서 기절시킨다.\n위기에 처하면 등껍질에 숨는다."
}
},
boosters: ["pikachu"]
}
export default card