mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
Finished Complete Rework of the Database
This commit is contained in:
69
data/EX/Team Magma vs Team Aqua/11.ts
Normal file
69
data/EX/Team Magma vs Team Aqua/11.ts
Normal file
@ -0,0 +1,69 @@
|
||||
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: [
|
||||
"Fightning",
|
||||
"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: [
|
||||
"Fightning",
|
||||
"Fightning",
|
||||
"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
|
Reference in New Issue
Block a user