1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +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

104
cards/pl/pl2/39.ts Normal file
View File

@ -0,0 +1,104 @@
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