1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-15 01:41:59 +00:00

Initial Database

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-19 16:19:09 +01:00
commit be94e712b8
12302 changed files with 1142705 additions and 0 deletions

105
cards/bw/bwp/BW76.ts Normal file
View File

@@ -0,0 +1,105 @@
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: "bwp-BW76",
localId: "BW76",
// Card informations
name: {
en: "Electrode",
fr: "Électrode",
},
hp: 100,
type: [
Type.LIGHTNING,
],
dexId: 101,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bwp/BW76/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bwp/BW76/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bwp/BW76/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bwp/BW76/high.png",
},
},
evolveFrom: {
en: "Voltorb",
fr: "Voltorbe",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.LIGHTNING
],
name: {
en: "Electribeam",
fr: "Rayon Électrique",
},
text: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.",
},
damage: 20
},{
cost: [
Type.LIGHTNING,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Self Destruct",
fr: "Destruction",
},
text: {
en: "This Pokémon does 100 damage to itself.",
fr: "Ce Pokémon s'inflige 100 dégâts.",
},
damage: 100
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "BW Black Star Promos",
code: "bwp"
}
}
export default card