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

126 lines
2.5 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-82",
localId: 82,
// Card informations
name: {
en: "Palossand-GX",
fr: "Trépassable-GX",
},
hp: 210,
type: [
Type.FIGHTING,
],
dexId: 770,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm7/82/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm7/82/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm7/82/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm7/82/high.png",
},
},
evolveFrom: {
en: "Sandygast",
fr: "Bacabouh",
},
tags: [
Tag.GX,
Tag.STAGE1,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.FIGHTING,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Eerie Light",
fr: "Lumière Étrange",
},
text: {
en: "Your opponent's Active Pokémon is now Confused.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
},
damage: 60
},{
cost: [
Type.FIGHTING,
Type.FIGHTING,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Absorb Life",
fr: "Absorption",
},
text: {
en: "Heal 20 damage from this Pokémon.",
fr: "Soignez 20 dégâts à ce Pokémon.",
},
damage: 100
},{
cost: [
Type.FIGHTING,
Type.FIGHTING,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Sandy Fear-gx",
fr: "Crainte Ensablée-GX",
},
text: {
en: "Look at the top 13 cards of your opponent's deck and discard any number of Pokémon you find there. This attack does 60 damage for each card you discarded in this way. Your opponent shuffles the other cards back into their deck. (You can't use more than 1 GX attack in a game.)",
fr: "Regardez les 13 cartes du dessus du deck de votre adversaire et défaussez-en autant de Pokémon que vous voulez. Cette attaque inflige 60 dégâts pour chaque carte défaussée de cette façon. Votre adversaire mélange les autres cartes avec son deck. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: 60
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
retreat: 4,
rarity: Rarity.RareHoloGX,
category: Category.POKEMON,
set: {
name: "Celestial Storm",
code: "sm7"
}
}
export default card