1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

105 lines
1.9 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../../../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: "hgss4-27",
localId: 27,
// Card informations
name: {
en: "Magmortar",
fr: "Maganon",
},
hp: 100,
type: [
Type.FIRE,
],
dexId: 467,
image: {
low: {
en: "https://assets.tcgdex.net/en/hgss/hgss4/27/low.png",
fr: "https://assets.tcgdex.net/fr/hgss/hgss4/27/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/hgss/hgss4/27/high.png",
fr: "https://assets.tcgdex.net/fr/hgss/hgss4/27/high.png",
},
},
evolveFrom: {
en: "Magmar",
fr: "Magmar",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 8,
name: "Masakazu Fukuda"
},
attacks: [{
cost: [
Type.FIRE
],
name: {
en: "Top Burner",
fr: "Super pyro",
},
text: {
en: "For each Fire Energy attached to Magmortar, discard the top card from your opponent's deck. Then, flip a coin. If tails, discard all Fire Energy attached to Magmortar.",
fr: "Pour chaque carte Énergie Fire attachée à Maganon, défaussez la carte du dessus du deck de votre adversaire. Lancez ensuite une pièce. Si c'est pile, défaussez toutes les cartes Énergie Fire attachées à Maganon.",
},
},{
cost: [
Type.FIRE,
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Burst Punch",
fr: "Poing d'enfer",
},
text: {
en: "The Defending Pokémon is now Burned.",
fr: "Le Pokémon Défenseur est maintenant Brûlé.",
},
damage: 60
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
retreat: 2,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "HS—Triumphant",
code: "hgss4"
}
}
export default card