1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-03 04:51:58 +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

104
cards/sm/smp/SM168.ts Normal file
View File

@@ -0,0 +1,104 @@
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: "smp-SM168",
localId: "SM168",
// Card informations
name: {
fr: "Pikachu et Zekrom-GX",
},
hp: 240,
type: [
Type.LIGHTNING,
],
image: {
low: {
fr: "https://assets.tcgdex.net/fr/sm/smp/SM168/low.png",
},
high: {
fr: "https://assets.tcgdex.net/fr/sm/smp/SM168/high.png",
},
},
evolveFrom: {},
tags: [
Tag.TAGTEAM,
],
illustrator: {
id: 27,
name: "kawayoo"
},
attacks: [{
name: {
fr: "Règle des ESCOUADES",
},
},{
cost: [
Type.LIGHTNING,
Type.LIGHTNING,
Type.LIGHTNING
],
name: {
fr: "Attaque Absolue",
},
text: {
fr: "Cherchez jusquà 3 cartes Énergie Lightning dans votre deck et attachez-les à lun de vos Pokémon. Mélangez ensuite votre deck.",
},
damage: 150
},{
cost: [
Type.LIGHTNING,
Type.LIGHTNING,
Type.LIGHTNING
],
name: {
fr: "Escouade Foudroyante-GX",
},
text: {
fr: "Si au moins 3 Énergies Lightning supplémentaires sont attachées à ce Pokémon (en plus du coût de cette attaque), cette attaque inflige 170 dégâts à lun des Pokémon de Banc de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.) (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: 200
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.METAL,
value: "-20"
}],
retreat: 3,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Promos",
code: "smp"
}
}
export default card