mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-28 14:59:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
81
data/Diamond & Pearl/Diamond & Pearl/60.ts
Normal file
81
data/Diamond & Pearl/Diamond & Pearl/60.ts
Normal file
@ -0,0 +1,81 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Diamond & Pearl'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Rhydon",
|
||||
fr: "Rhinoféros",
|
||||
},
|
||||
illustrator: "Naoyo Kimura",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
112,
|
||||
],
|
||||
hp: 90,
|
||||
types: [
|
||||
"Fightning",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Rhyhorn",
|
||||
fr: "Rhinocorne",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fightning",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Storm Up",
|
||||
fr: "La tempête se lève",
|
||||
},
|
||||
effect: {
|
||||
en: "If there is any Stadium card in play, this attack does 30 damage plus 20 more damage. Discard that Stadium card.",
|
||||
fr: "Si une carte Stade est en jeu, cette attaque inflige 30 dégâts plus 20 dégâts supplémentaires. Défaussez cette carte Stade.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Fightning",
|
||||
"Fightning",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Crash Impact",
|
||||
fr: "Cratère",
|
||||
},
|
||||
effect: {
|
||||
en: "Rhydon does 10 damage to itself. Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon, if any.",
|
||||
fr: "Rhinoféros s'inflige 10 dégâts. Votre adversaire échange le Pokémon Défenseur avec 1 de ses Pokémon de Banc, s'il en a.",
|
||||
},
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user