mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
72 lines
1.1 KiB
TypeScript
72 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Battle Styles'
|
||
|
||
const card: Card = {
|
||
dexId: [104],
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Cubone",
|
||
fr: "Osselait",
|
||
es: "Cubone",
|
||
it: "Cubone",
|
||
pt: "Cubone",
|
||
de: "Tragosso"
|
||
},
|
||
|
||
illustrator: "You Iribi",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 70,
|
||
types: ["Fighting"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Beat",
|
||
fr: "Bataille",
|
||
es: "Toque",
|
||
it: "Battuta",
|
||
pt: "Pulso",
|
||
de: "Verprügler"
|
||
},
|
||
|
||
damage: 10,
|
||
cost: ["Fighting"]
|
||
}, {
|
||
name: {
|
||
en: "Headbutt",
|
||
fr: "Coup d'Boule",
|
||
es: "Golpe Cabeza",
|
||
it: "Bottintesta",
|
||
pt: "Cabeçada",
|
||
de: "Kopfnuss"
|
||
},
|
||
|
||
damage: 30,
|
||
cost: ["Fighting", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "E",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
description: {
|
||
en: "It wears its mother's skull on its head, so no one knows what its bare face looks like. However, it's clear that it's always crying."
|
||
}
|
||
}
|
||
|
||
export default card
|