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

115 lines
2.2 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-85",
localId: 85,
// Card informations
name: {
en: "Alolan Raticate-GX",
fr: "Rattatac dAlola-GX",
},
hp: 200,
type: [
Type.DARKNESS,
],
dexId: 20,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm7/85/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm7/85/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm7/85/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm7/85/high.png",
},
},
evolveFrom: {
en: "Alolan Rattata",
fr: "Rattata dAlola",
},
tags: [
Tag.GX,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
name: {
en: "Chuck Away",
fr: "Bazarder",
},
text: {
en: "Discard up to 2 cards from your hand. This attack does 40 damage for each card you discarded in this way.",
fr: "Défaussez jusquà 2 cartes de votre main. Cette attaque inflige 40 dégâts pour chaque carte défaussée de cette façon.",
},
damage: 40
},{
cost: [
Type.DARKNESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Hyper Fang",
fr: "Croc de Mort",
},
text: {
en: "Flip a coin. If tails, this attack does nothing.",
fr: "Lancez une pièce. Si cest pile, cette attaque ne fait rien.",
},
damage: 150
},{
name: {
en: "Item Maniac-GX",
fr: "Fou dObjets-GX",
},
text: {
en: "Search your deck for up to 6 Item cards, reveal them, and put them into your hand. Then, shuffle your deck. (You can't use more than 1 GX attack in a game.)",
fr: "Cherchez jusquà 6 cartes Objet dans votre deck, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 3,
rarity: Rarity.RareHoloGX,
category: Category.POKEMON,
set: {
name: "Celestial Storm",
code: "sm7"
}
}
export default card