1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 23:22:11 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

105 lines
1.9 KiB
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/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: "pl2-39",
localId: 39,
// Card informations
name: {
en: "Electrode G",
fr: "Electrode Niv. 38",
},
hp: 70,
type: [
Type.LIGHTNING,
],
dexId: 101,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl2/39/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl2/39/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl2/39/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl2/39/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
Tag.SP,
],
illustrator: {
id: 123,
name: "Yusuke Ishikawa"
},
attacks: [{
cost: [
Type.LIGHTNING
],
name: {
en: "Reckless Bomb",
fr: "Bombe imprudente",
},
text: {
en: "This attack does 20 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) Electrode does 100 damage to itself.",
fr: "Cette attaque inflige 20 dégâts à chacun des Pokémon de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc). Electrode s'inflige 100 dégâts.",
},
},{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Reflect Energy",
fr: "Renvoi d'énergie",
},
text: {
en: "Move an Energy card attached to Electrode to 1 of your Benched Pokémon.",
fr: "Déplacez une carte Énergie attachée à Electrode sur 1 des Pokémon de votre Banc.",
},
damage: 30
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.METAL,
value: "-20"
}],
retreat: 1,
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Rising Rivals",
code: "pl2"
}
}
export default card