mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
84 lines
1.2 KiB
TypeScript
84 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Legends Awakened'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Cubone",
|
|
fr: "Osselait",
|
|
de: "Tragosso"
|
|
},
|
|
|
|
illustrator: "Kagemaru Himeno",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
104,
|
|
],
|
|
|
|
hp: 60,
|
|
|
|
types: [
|
|
"Fighting",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Headbutt",
|
|
fr: "Coup d'boule",
|
|
de: "Kopfnuss"
|
|
},
|
|
|
|
damage: 10,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Fighting",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Bonemerang",
|
|
fr: "Osmerang",
|
|
de: "Knochmerang"
|
|
},
|
|
effect: {
|
|
en: "Flip 2 coins. This attack does 20 damage times the number of heads.",
|
|
fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts multipliés par le nombre de faces.",
|
|
de: "Wirf 2 Münzen. Dieser Angriff fügt 20 Schadenspunkte mal der Anzahl \"Kopf\" zu."
|
|
},
|
|
damage: "20x",
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Water",
|
|
value: "+10"
|
|
},
|
|
],
|
|
|
|
resistances: [
|
|
{
|
|
type: "Lightning",
|
|
value: "-20"
|
|
},
|
|
],
|
|
|
|
retreat: 1,
|
|
|
|
description: {
|
|
fr: "Il pleure en pensant à sa mère disparue, et ses larmes résonnent dans son crâne creux."
|
|
}
|
|
}
|
|
|
|
export default card
|