1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 11:09:51 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,94 @@
import { Card } from '../../../interfaces'
import Set from '../Unseen Forces'
const card: Card = {
name: {
en: "Steelix ex",
},
illustrator: "Ryo Ueda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
208,
],
hp: 150,
types: [
"Metal",
],
evolveFrom: {
en: "Onix",
},
suffix: "EX",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Poison Resistance",
},
effect: {
en: "Steelix ex can't be Poisoned.",
},
},
],
attacks: [
{
cost: [
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Metal Charge",
},
effect: {
en: "Put 1 damage counter on Steelix ex.",
},
damage: 70,
},
{
cost: [
"Fightning",
"Fightning",
"Colorless",
"Colorless",
],
name: {
en: "Mudslide",
},
effect: {
en: "Discard 2 Fighting Energy attached to Steelix ex and choose 1 of your opponent's Pokémon. This attack does 100 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
{
type: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
{
type: "Lightning",
value: "-30"
},
],
}
export default card