1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon dc4d1bd6cb
Fix HeartGold SoulSilver datas (#73)
* Update

Signed-off-by: Avior <github@avior.me>

* Update datas

Signed-off-by: Avior <github@avior.me>

* Finished fix

Signed-off-by: Avior <github@avior.me>

* Updated some more

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Some more updates

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-09-29 21:43:33 +00:00

89 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Triumphant'
const card: Card = {
name: {
en: "Cubone",
fr: "Osselait",
},
illustrator: "kawayoo",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
104,
],
hp: 40,
types: [
"Fighting",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Lonely Bone",
fr: "Ossolitaire",
},
effect: {
en: "Any damage done to Cubone by your opponents attacks is reduced by 20 for each Marowak in your discard pile (after applying Weakness and Resistance).",
fr: "Tous les dégâts infligés à Osselait par les attaques de votre adversaire sont réduits de 20 pour chaque Ossatueur dans votre pile de défausse (après application de la Faiblesse et de la Résistance).",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Bone Rush",
fr: "Charge-os",
},
effect: {
en: "Flip a coin until you get tails. This attack does 20 damage times the number of heads.",
fr: "Lancez une pièce jusquà ce quelle tombe sur pile. Cette attaque inflige 20 dégâts multipliés par le nombre de côtés face.",
},
damage: "20×",
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 1,
description: {
en: "If it is sad or lonely, the skull it wears shakes and emits a plaintive and mournful sound."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card