mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-12 15:59:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
74
data/EX/Team Rocket Returns/36.ts
Normal file
74
data/EX/Team Rocket Returns/36.ts
Normal file
@ -0,0 +1,74 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Team Rocket Returns'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Dark Gyarados",
|
||||
},
|
||||
illustrator: "Nakaoka",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
130,
|
||||
],
|
||||
hp: 80,
|
||||
types: [
|
||||
"Water",
|
||||
"Darkness",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Magikarp",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Water",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Sharp Fang",
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Water",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Dark Streak",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, each Defending Pokémon is now Paralyzed.",
|
||||
},
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "-30"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user