mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-21 19:39:18 +00:00
Added most of Swsh2 cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
97
cards/swsh/swsh2/59.ts
Normal file
97
cards/swsh/swsh2/59.ts
Normal file
@ -0,0 +1,97 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-59",
|
||||
|
||||
localId: 59,
|
||||
|
||||
name: {
|
||||
en: "Electivire",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "tetsuya koizumi",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Electabuzz",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Thunder Shock",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.",
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Electrified Bolt",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If this Pokémon has any Special Energy attached, this attack does 90 more damage.",
|
||||
},
|
||||
|
||||
damage: "90+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user