mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
88
cards/xy/xya/24a.ts
Normal file
88
cards/xy/xya/24a.ts
Normal file
@ -0,0 +1,88 @@
|
||||
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: "xya-24a",
|
||||
localId: "24a",
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
fr: "M-Élecsprint-ex",
|
||||
},
|
||||
|
||||
hp: 210,
|
||||
|
||||
type: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xya/24a/low.png",
|
||||
},
|
||||
high: {
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xya/24a/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
fr: "Élecsprint-ex",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.MEGA,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
fr: "Éclair Turbo",
|
||||
},
|
||||
text: {
|
||||
fr: "Attachez 2 cartes Énergie de base de votre pile de défausse à l'un de vos Pokémon de Banc.",
|
||||
},
|
||||
damage: 110
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.METAL,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.RareHoloEX,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "carte alternative A Jaune",
|
||||
code: "xya"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user