1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-04 13:21:58 +00:00

feat: add database update (#825)

This commit is contained in:
2025-07-19 18:58:03 +02:00
committed by GitHub
parent aa68bfccf2
commit 651346dff7
354 changed files with 21377 additions and 7 deletions

View File

@@ -0,0 +1,43 @@
import { Card } from "../../../interfaces"
import Set from "../White Flare"
const card: Card = {
set: Set,
name: {
en: "Sewaddle",
fr: "Larveyette",
de: "Strawickl",
it: "Sewaddle",
pt: "Sewaddle",
es: "Sewaddle",
'es-mx': "Sewaddle"
},
rarity: "Illustration rare",
category: "Pokemon",
hp: 50,
types: ["Grass"],
stage: "Basic",
attacks: [{
cost: ["Grass"],
name: {
en: "Bug Bite",
fr: "Piqûre",
de: "Käferbiss",
it: "Coleomorso",
pt: "Picada",
es: "Picadura",
'es-mx': "Picadura"
},
damage: 20
}],
retreat: 1,
regulationMark: "I"
}
export default card