1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 01:07:53 +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.4 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "Sharpedo",
fr: "Sharpedo",
},
illustrator: "MAHOU",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
319,
],
hp: 90,
types: [
"Darkness",
],
evolveFrom: {
en: "Carvanha",
fr: "Carvanha",
},
stage: "Stage1",
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Strip Bare",
fr: "Croktou",
},
effect: {
en: "Flip 2 coins. If both of them are heads, your opponent discards all cards from his or her hand.",
fr: "Lancez 2 pièces. Si vous obtenez deux fois un côté face, votre adversaire défausse toutes les cartes de sa main.",
},
damage: 20,
},
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Rage",
fr: "Frénésie",
},
effect: {
en: "Does 50 damage plus 10 more damage for each damage counter on Sharpedo.",
fr: "Inflige 50 dégâts plus 10 dégâts supplémentaires pour chaque marqueur de dégât placé sur Sharpedo.",
},
damage: "50+",
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 1,
description: {
en: "It can swim at speeds of 75 mph by jetting seawater through its body. It is the bandit of the sea."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card