1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon 6ca1ae94ed
Updated Cards to use new Rarities
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 13:58:48 +02:00

116 lines
2.2 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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'
const card: Card = {
// ids
id: "sm9-185",
localId: 185,
// 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/185/low",
fr: "https://assets.tcgdex.net/fr/sm/sm9/185/low",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm9/185/high",
fr: "https://assets.tcgdex.net/fr/sm/sm9/185/high",
},
},
evolveFrom: {
en: "Flaaffy",
fr: "Lainergie",
},
tags: [
Tag.GX,
],
illustrator: "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 quune attaque GX par partie.)",
},
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.METAL,
value: "-20"
}],
retreat: 3,
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Team Up",
code: "sm9"
}
}
export default card