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

119
cards/sm/sm9/184.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: "sm9-184",
localId: 184,
// Card informations
name: {
en: "Pikachu & Zekrom-GX",
fr: "Pikachu et Zekrom-GX",
},
hp: 240,
type: [
Type.LIGHTNING,
],
dexId: 25,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm9/184/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm9/184/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm9/184/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm9/184/high.png",
},
},
evolveFrom: {},
tags: [
Tag.TAGTEAM,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.LIGHTNING,
Type.LIGHTNING,
Type.LIGHTNING
],
name: {
en: "Full Blitz",
fr: "Règle des ESCOUADES",
},
text: {
en: "Search your deck for up to 3 Lightning Energy cards and attach them to 1 of your Pokémon. Then, shuffle your deck.",
},
damage: 150
},{
cost: [
Type.LIGHTNING,
Type.LIGHTNING,
Type.LIGHTNING
],
name: {
en: "Tag Bolt-GX",
fr: "Attaque Absolue",
},
text: {
en: "If this Pokémon has at least 3 extra Lightning Energy attached to it (in addition to this attack's cost), this attack does 170 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) (You can't use more than 1 GX attack in a game.)",
fr: "Cherchez jusquà 3 cartes Énergie Lightning dans votre deck et attachez-les à lun de vos Pokémon. Mélangez ensuite votre deck.",
},
damage: 200
},{
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.Rare,
category: Category.POKEMON,
set: {
name: "Team Up",
code: "sm9"
}
}
export default card