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

112 lines
2.4 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: "sm8-218",
localId: 218,
// Card informations
name: {
en: "Magcargo-GX",
fr: "Volcaropod-GX",
},
hp: 210,
type: [
Type.FIRE,
],
dexId: 219,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm8/218/low",
fr: "https://assets.tcgdex.net/fr/sm/sm8/218/low",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm8/218/high",
fr: "https://assets.tcgdex.net/fr/sm/sm8/218/high",
},
},
evolveFrom: {
en: "Slugma",
fr: "Limagma",
},
tags: [
Tag.GX,
],
illustrator: "5ban Graphics",
abilities: [{
id: 1107,
type: AbilityType.TALENT,
name: {
en: "Crushing Charge",
fr: "Charge Écrasante",
},
text: {
en: "Once during your turn (before your attack), you may discard the top card of your deck. If it's a basic Energy card, attach it to 1 of your Pokémon.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez défausser la carte du dessus de votre deck. Si cest une carte Énergie de base, attachez-la à lun de vos Pokémon.",
}
}],
attacks: [{
cost: [
Type.FIRE,
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Lava Flow",
fr: "Torrent de Lave",
},
text: {
en: "Discard any amount of basic Energy from this Pokémon. This attack does 50 more damage for each card you discarded in this way.",
fr: "Défaussez nimporte quel nombre dÉnergies de base de ce Pokémon. Cette attaque inflige 50 dégâts supplémentaires pour chaque carte défaussée de cette façon.",
},
damage: 50
},{
cost: [
Type.FIRE
],
name: {
en: "Burning Magma-GX",
fr: "Magma Brûlant-GX",
},
text: {
en: "Discard the top 5 cards of your opponent's deck. (You can't use more than 1 GX attack in a game.)",
fr: "Défaussez les 5 cartes du dessus du deck de votre adversaire. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
retreat: 3,
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Lost Thunder",
code: "sm8"
}
}
export default card