1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

124
cards/sm/sm2/134.ts Normal file
View File

@ -0,0 +1,124 @@
import Card from '../../../interfaces/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "sm2-134",
localId: 134,
// Card informations
name: {
en: "Vikavolt-GX",
fr: "Lucanon-GX",
},
hp: 240,
type: [
Type.LIGHTNING,
],
dexId: 738,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm2/134/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm2/134/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm2/134/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm2/134/high.png",
},
},
evolveFrom: {
en: "Charjabug",
fr: "Chrysapile",
},
tags: [
Tag.GX,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.LIGHTNING
],
name: {
en: "Charge Beam",
fr: "Rayon Chargé",
},
text: {
en: "Attach an Energy card from your discard pile to this Pokémon.",
fr: "Attachez une carte Énergie de votre pile de défausse à ce Pokémon.",
},
damage: 50
},{
cost: [
Type.LIGHTNING,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Super Zap Cannon",
fr: "Super Élecanon",
},
text: {
en: "Discard 2 Energy from this Pokémon.",
fr: "Défaussez 2 Énergies de ce Pokémon.",
},
damage: 180
},{
cost: [
Type.LIGHTNING,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Gigatron-GX",
fr: "Gigatron-GX",
},
text: {
en: "This attack does 60 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) (You can't use more than 1 GX attack in a game.)",
fr: "Cette attaque inflige 60 dégâts à chacun des Pokémon de Banc de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.) (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.METAL,
value: "-20"
}],
retreat: 1,
rarity: Rarity.RareUltra,
category: Category.POKEMON,
set: {
name: "Guardians Rising",
code: "sm2"
}
}
export default card