1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12: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

120 lines
2.3 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 '../../../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: "sm7-169",
localId: 169,
// Card informations
name: {
en: "Shiftry-GX",
fr: "Tengalice-GX",
},
hp: 240,
type: [
Type.GRASS,
],
dexId: 275,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm7/169/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm7/169/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm7/169/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm7/169/high.png",
},
},
evolveFrom: {
en: "Nuzleaf",
fr: "Pifeuil",
},
tags: [
Tag.GX,
],
illustrator: {
id: 141,
name: "PLANETA Igarashi"
},
attacks: [{
cost: [
Type.GRASS
],
name: {
en: "Perplex",
fr: "Affolement",
},
text: {
en: "Your opponent's Active Pokémon is now Confused.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
},
damage: 40
},{
cost: [
Type.GRASS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Extrasensory",
fr: "Extrasenseur",
},
text: {
en: "If you have the same number of cards in your hand as your opponent, this attack does 90 more damage.",
fr: "Si vous avez le même nombre de cartes dans votre main que votre adversaire, cette attaque inflige 90 dégâts supplémentaires.",
},
damage: 90
},{
cost: [
Type.GRASS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Den of Iniquity-GX",
fr: "Lieu de Perdition-GX",
},
text: {
en: "Choose 1 of your opponent's Pokémon. Your opponent shuffles that Pokémon and all cards attached to it into their deck. (You can't use more than 1 GX attack in a game.)",
fr: "Choisissez lun des Pokémon de votre adversaire. Votre adversaire mélange ce Pokémon et toutes les cartes qui lui sont attachées avec son deck. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
retreat: 2,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Celestial Storm",
code: "sm7"
}
}
export default card