1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

94 lines
1.7 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",
de: "Tohaido"
},
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",
de: "Blankmacher"
},
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.",
de: "Wirf 2 Münzen. Wenn beide \"Kopf\" zeigen, legt dein Gegner alle Handkarten auf seinen Ablagestapel."
},
damage: 20,
},
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Rage",
fr: "Frénésie",
de: "Raserei"
},
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.",
de: "Dieser Angriff fügt 50 Schadenspunkte plus 10 weitere Schadenspunkte für jede Schadensmarke auf Tohaido zu."
},
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