1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

119
cards/sm/sm7/152.ts Normal file
View File

@ -0,0 +1,119 @@
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-152",
localId: 152,
// 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/152/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm7/152/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm7/152/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm7/152/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.RareUltra,
category: Category.POKEMON,
set: {
name: "Celestial Storm",
code: "sm7"
}
}
export default card