1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19: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

96
cards/ex/ex4/27.ts Normal file
View File

@ -0,0 +1,96 @@
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: "ex4-27",
localId: 27,
// Card informations
name: {
en: "Team Aqua's Electrike",
},
hp: 50,
type: [
Type.LIGHTNING,
],
dexId: 309,
image: {
low: {
en: "https://assets.tcgdex.net/en/ex/ex4/27/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/ex/ex4/27/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 150,
name: "M. Akiyama"
},
attacks: [{
cost: [
Type.LIGHTNING
],
name: {
en: "Random Spark",
},
text: {
en: "Choose 1 of your opponent's Pokémon. This attack does 10 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
},{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Plasma",
},
text: {
en: "Flip a coin. If heads, search your discard pile for a Lightning Energy card and attach it to Team Aqua's Electrike.",
},
damage: 10
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.METAL,
value: "-30"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Team Magma vs Team Aqua",
code: "ex4"
}
}
export default card