1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +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

114
cards/sm/sm7/85.ts Normal file
View File

@ -0,0 +1,114 @@
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