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

44 lines
824 B
TypeScript
Raw Permalink 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: "Galvantula"
},
illustrator: "Taira Akitsu",
category: "Pokemon",
hp: 100,
types: ["Lightning"],
description: {
id: "Galvantula mengincar anak burung yang belum dapat terbang dengan baik dan memasang jebakan menggunakan benang listrik di dekat sarang Pokémon burung."
},
stage: "Stage1",
attacks: [{
name: {
id: "Electric Bullet"
},
effect: {
id: "Serangan ini juga memberikan kerusakan sejumlah 30 kepada 1 Pokémon Cadangan lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]"
},
damage: 50,
cost: ["Lightning"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card