1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-14 20:49:54 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

74 lines
1.1 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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Rhydon",
fr: "Rhinoféros",
},
illustrator: "kirisAki",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
112,
],
hp: 110,
types: [
"Fighting",
],
evolveFrom: {
en: "Rhyhorn",
fr: "Rhinocorne",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Dirty Work",
fr: "Sale Boulot",
},
effect: {
en: "Discard the top card of your opponent's deck. If you played Giovanni's Exile from your hand during this turn, discard the top 5 cards instead.",
fr: "Défaussez la carte du dessus du deck de votre adversaire. Si vous avez joué Exil de Giovanni de votre main pendant ce tour, défaussez les 5 cartes du dessus de son deck à la place.",
},
},
{
cost: [
"Fighting",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Horn Attack",
fr: "KoudKorne",
},
damage: 90,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 4,
}
export default card