mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-30 03:29:51 +00:00
Finished Complete Rework of the Database
This commit is contained in:
75
data/EX/Team Rocket Returns/10.ts
Normal file
75
data/EX/Team Rocket Returns/10.ts
Normal file
@ -0,0 +1,75 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Team Rocket Returns'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Dark Steelix",
|
||||
},
|
||||
illustrator: "Kyoko Koizumi",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
208,
|
||||
],
|
||||
hp: 110,
|
||||
types: [
|
||||
"Metal",
|
||||
"Darkness",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Onix",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Energy Link",
|
||||
},
|
||||
effect: {
|
||||
en: "Search your discard pile for an Energy card and attach it to Dark Steelix.",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Fightning",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Heavy Impact",
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Grass",
|
||||
value: "-30"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user