1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-21 19:39:18 +00:00
Files
cards-database/data/Sword & Shield/Sword & Shield/98.ts

101 lines
2.2 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 '../Sword & Shield'
const card: Card = {
name: {
en: "Rhydon",
fr: "Rhinoféros",
es: "Rhydon",
it: "Rhydon",
pt: "Rhydon",
de: "Rizeros"
},
illustrator: "KEIICHIRO ITO",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
hp: 120,
types: [
"Fighting",
],
evolveFrom: {
en: "Rhyhorn",
fr: "Rhinocorne",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Horn Drill",
fr: "EmpalKorne",
es: "Perforador",
it: "Perforcorno",
pt: "Chifre Broca",
de: "Hornbohrer"
},
damage: 50,
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Rock Slide",
fr: "Éboulement",
es: "Avalancha",
it: "Frana",
pt: "Deslize de Pedras",
de: "Steinhagel"
},
effect: {
en: "This attack also does 10 damage to 2 of your opponents Benched Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige aussi 10 dégâts à 2 des Pokémon de Banc de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
es: "Este ataque también hace 10 puntos de daño a 2 de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
it: "Questo attacco infligge anche 10 danni a due dei Pokémon nella panchina del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.",
pt: "Este ataque também causa 10 pontos de dano a 2 dos Pokémon no Banco do seu oponente (não aplique Fraqueza e Resistência aos Pokémon no Banco).",
de: "Diese Attacke fügt auch 2 Pokémon auf der Bank deines Gegners 10 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
damage: 100,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 4,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
description: {
en: "Protected by an armor-like hide, it is capable of living in molten lava of 3,600 degrees Fahrenheit."
}
}
export default card