1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00

50 lines
1005 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 "../SV3s"
const card: Card = {
set: Set,
name: {
id: "Eelektross"
},
illustrator: "Masakazu Fukuda",
category: "Pokemon",
hp: 160,
types: ["Lightning"],
description: {
id: "Menggunakan kekuatan lengannya, Eelektross merayap keluar dari laut dan menyergap mangsa di tepi pantai. Pokémon ini menyeret mangsanya ke laut dalam sekejap."
},
stage: "Stage2",
attacks: [{
name: {
id: "Sengatan Absorpsi"
},
effect: {
id: "Pilih 1 Pokémon Cadangan lawan, lalu tukar dengan Pokémon Bertarung. Setelah itu, berikan kerusakan sejumlah 60 kepada Pokémon Bertarung yang baru. Lempar koin 1 kali. Jika hasilnya sisi depan, ubah kondisi Pokémon tersebut menjadi Lumpuh."
},
cost: ["Lightning"]
}, {
name: {
id: "Head Bolt"
},
damage: 130,
cost: ["Lightning", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card