mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-01 15:12:10 +00:00
70 lines
876 B
TypeScript
70 lines
876 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Team Magma vs Team Aqua'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Team Magma's Rhydon",
|
||
},
|
||
illustrator: "T. Honda",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
112,
|
||
],
|
||
hp: 90,
|
||
types: [
|
||
"Fighting",
|
||
"Darkness",
|
||
],
|
||
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Darkness",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Magma Jab",
|
||
},
|
||
effect: {
|
||
en: "This attack's damage is not affected by Resistance.",
|
||
},
|
||
damage: 20,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
"Fighting",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Shoot Down",
|
||
},
|
||
effect: {
|
||
en: "If the Defending Pokémon has Team Aqua in its name, the Defending Pokémon is now Confused.",
|
||
},
|
||
damage: 50,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Grass",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|