mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 18:29:19 +00:00
feat: add Celestial Guardians (#716)
This commit is contained in:
48
data/Pokémon TCG Pocket/Celestial Guardians/065.ts
Normal file
48
data/Pokémon TCG Pocket/Celestial Guardians/065.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Celestial Guardians"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Vikavolt"
|
||||
},
|
||||
|
||||
illustrator: "Hitoshi Ariga",
|
||||
rarity: "Three Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Lightning"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Charjabug"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "It builds up electricity in its abdomen, focuses it through its jaws, and then fires the electricity off in concentrated beams."
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Disconnect"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
cost: ["Lightning", "Lightning"],
|
||||
|
||||
effect: {
|
||||
en: "During your opponent's next turn, they can't play any Item cards from their hand."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user