1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 09:47:51 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

78 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Unified Minds'
const card: Card = {
name: {
en: "Steelix",
fr: "Steelix",
},
illustrator: "Ayaka Yoshida",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
208,
],
hp: 170,
types: [
"Fighting",
],
evolveFrom: {
en: "Onix",
fr: "Onix",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Ground Stream",
fr: "Ruisseau Terrestre",
},
effect: {
en: "Attach 2 Fighting Energy cards from your discard pile to this Pokémon.",
fr: "Attachez 2 cartes Énergie Fighting de votre pile de défausse à ce Pokémon.",
},
damage: 20,
},
{
cost: [
"Fighting",
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Gigaton Shake",
fr: "Secousse Gigatonne",
},
effect: {
en: "During your next turn, your Pokémon can't attack. (This includes Pokémon that come into play on that turn.)",
fr: "Pendant votre prochain tour, vos Pokémon ne peuvent pas attaquer. (Cela comprend les Pokémon qui sont mis en jeu pendant ce tour.)",
},
damage: 220,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 4,
}
export default card