1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-03 21:02:02 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/122.ts

44 lines
658 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Steelix"
},
illustrator: "KEIICHIRO ITO",
rarity: "Three Diamond",
category: "Pokemon",
hp: 150,
types: ["Metal"],
evolveFrom: {
en: "Onix"
},
description: {
en: "It is said that if an Onix lives for over 100 years,\nits composition changes to become diamond-like."
},
stage: "Stage1",
attacks: [{
name: {
en: "Heavy Impact"
},
damage: 110,
cost: ["Metal", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 4
}
export default card