mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-21 15:49:55 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
87 lines
1.1 KiB
TypeScript
87 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Sword & Shield'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Baltoy",
|
||
fr: "Balbuto",
|
||
es: "Baltoy",
|
||
it: "Baltoy",
|
||
pt: "Baltoy",
|
||
de: "Puppance"
|
||
},
|
||
|
||
illustrator: "Uta",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
hp: 70,
|
||
|
||
types: [
|
||
"Fighting",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Beam",
|
||
fr: "Rayon",
|
||
es: "Transmisión",
|
||
it: "Raggio",
|
||
pt: "Feixe",
|
||
de: "Strahl"
|
||
},
|
||
|
||
damage: 10,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
"Fighting",
|
||
],
|
||
name: {
|
||
en: "Sand Spray",
|
||
fr: "Jet Sableux",
|
||
es: "Rociado de Arena",
|
||
it: "Silicospruzzo",
|
||
pt: "Spray de Areia",
|
||
de: "Sandspray"
|
||
},
|
||
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Grass",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
description: {
|
||
en: "It moves while spinning around on its single foot. Some Baltoy have been seen spinning on their heads."
|
||
},
|
||
|
||
dexId: [343]
|
||
}
|
||
|
||
export default card
|