mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
119
cards/sm/sm9/43.ts
Normal file
119
cards/sm/sm9/43.ts
Normal file
@ -0,0 +1,119 @@
|
||||
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: "sm9-43",
|
||||
localId: 43,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Ampharos-GX",
|
||||
fr: "Pharamp-GX",
|
||||
},
|
||||
|
||||
hp: 240,
|
||||
|
||||
type: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
dexId: 181,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm9/43/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm9/43/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm9/43/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm9/43/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Flaaffy",
|
||||
fr: "Lainergie",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.GX,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.LIGHTNING
|
||||
],
|
||||
name: {
|
||||
en: "Power Recharge",
|
||||
fr: "Recharge Puissance",
|
||||
},
|
||||
text: {
|
||||
en: "Put all Electropower cards from your discard pile into your hand.",
|
||||
fr: "Placez toutes les cartes Électropuissance de votre pile de défausse dans votre main.",
|
||||
},
|
||||
damage: 30
|
||||
},{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.LIGHTNING
|
||||
],
|
||||
name: {
|
||||
en: "Impact Bolt",
|
||||
fr: "Frappe Éclair",
|
||||
},
|
||||
text: {
|
||||
en: "Discard all Lightning Energy from this Pokémon.",
|
||||
fr: "Défaussez toute l’Énergie Lightning de ce Pokémon.",
|
||||
},
|
||||
damage: 150
|
||||
},{
|
||||
cost: [
|
||||
Type.LIGHTNING
|
||||
],
|
||||
name: {
|
||||
en: "Electrical-GX",
|
||||
fr: "Électricité-GX",
|
||||
},
|
||||
text: {
|
||||
en: "Search your deck for up to 7 Pokémon, reveal them, and put them into your hand. Then, shuffle your deck. (You can't use more than 1 GX attack in a game.)",
|
||||
fr: "Cherchez jusqu’à 7 Pokémon dans votre deck, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck. (Vous ne pouvez utiliser qu’une attaque GX par partie.)",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.METAL,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
rarity: Rarity.RareHoloGX,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Team Up",
|
||||
code: "sm9"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user