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

121 lines
2.1 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: "sm2-147",
localId: 147,
// Card informations
name: {
en: "Incineroar-GX",
fr: "Félinferno-GX",
},
hp: 250,
type: [
Type.FIRE,
],
dexId: 727,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm2/147/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm2/147/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm2/147/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm2/147/high.png",
},
},
evolveFrom: {
en: "Torracat",
fr: "Matoufeu",
},
tags: [
Tag.GX,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.FIRE
],
name: {
en: "Hustling Strike",
fr: "Frappe Bousculante",
},
text: {
en: "This attack does 20 more damage for each of your Benched Fire Pokémon.",
fr: "Cette attaque inflige 20 dégâts supplémentaires pour chacun de vos Pokémon de Banc Fire.",
},
damage: 10
},{
cost: [
Type.FIRE,
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Tiger Swing",
fr: "Projection de Tigre",
},
text: {
en: "Flip 2 coins. This attack does 50 more damage for each heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 50 dégâts supplémentaires pour chaque côté face.",
},
damage: 80
},{
cost: [
Type.FIRE,
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Burning Slam-GX",
fr: "Percussion Brûlante-GX",
},
text: {
en: "Your opponent's Active Pokémon is now Burned. (You can't use more than 1 GX attack in a game.)",
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: 200
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
retreat: 3,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Guardians Rising",
code: "sm2"
}
}
export default card