1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16: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: "Lapras",
fr: "Lokhlass",
@ -11,11 +12,13 @@ const card: Card = {
ko: "라프라스",
'pt-br': "Lapras"
},
illustrator: "Haru Akasaka",
category: "Pokemon",
hp: 100,
types: ["Water"],
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
@ -38,12 +41,15 @@ const card: Card = {
},
damage: "20+"
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 2,
rarity: "One Star",
description: {
en: "A smart and kindhearted Pokémon, it glides across the surface of the sea while its beautiful song echoes around it.",
fr: "C'est un Pokémon doux et intelligent.\nIl vogue sur la mer en émettant un chant\nmagnifique.",
@ -52,6 +58,8 @@ const card: Card = {
de: "Ein intelligentes und herzensgutes Pokémon.\nWährend es auf dem Meer schwimmt, lässt es\nseinen herrlichen Gesang erklingen.",
'pt-br': "Este Pokémon esperto e bondoso flutua\nna superfície do oceano, enquanto sua\nlinda canção ecoa ao redor.",
ko: "영리하고 마음 착한 포켓몬.\n아름다운 소리로 노래 부르며\n바다 위를 헤엄친다."
}
},
boosters: ["charizard"]
}
export default card