mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-12 15:59:18 +00:00
51
data/Sword & Shield/Fusion Strike/87.ts
Normal file
51
data/Sword & Shield/Fusion Strike/87.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Fusion Strike"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Voltorb",
|
||||
fr: "Voltorbe",
|
||||
es: "Voltorb",
|
||||
it: "Voltorb",
|
||||
pt: "Voltorb",
|
||||
de: "Voltobal"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic",
|
||||
retreat: 1,
|
||||
regulationMark: "E",
|
||||
illustrator: "Tomokazu Komiya",
|
||||
|
||||
description: {
|
||||
en: "Usually found in power plants. Easily mistaken for a Poké Ball, it has zapped many people."
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Single Shot Blast"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If tails, this attack does nothing."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user