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

117
cards/sm/sm11/152.ts Normal file
View File

@ -0,0 +1,117 @@
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: "sm11-152",
localId: 152,
// Card informations
name: {
en: "Dragonite-GX",
fr: "Dracolosse-GX",
},
hp: 250,
type: [
Type.DRAGON,
],
dexId: 149,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm11/152/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm11/152/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm11/152/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm11/152/high.png",
},
},
evolveFrom: {
en: "Dragonair",
fr: "Draco",
},
tags: [
Tag.GX,
],
illustrator: {
id: 141,
name: "PLANETA Igarashi"
},
attacks: [{
cost: [
Type.WATER,
Type.LIGHTNING,
Type.COLORLESS
],
name: {
en: "Dragon Claw",
fr: "Dracogriffe",
},
damage: 130
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Sky Judgment",
fr: "Jugement Céleste",
},
text: {
en: "Discard 3 Energy from this Pokémon.",
fr: "Défaussez 3 Énergies de ce Pokémon.",
},
damage: 270
},{
cost: [
Type.COLORLESS
],
name: {
en: "Mach Delivery-GX",
fr: "Livraison Flash-GX",
},
text: {
en: "You may discard any number of cards from your hand until you have 9 or fewer. Draw cards until you have 10 cards in your hand. (You can't use more than 1 GX attack in a game.)",
fr: "Vous pouvez défausser autant de cartes que vous voulez de votre main jusquà en avoir 9 ou moins. Piochez des cartes jusquà ce que vous ayez 10 cartes en main. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
}],
weaknesses: [{
type: Type.FAIRY,
value: "×2"
}],
retreat: 2,
rarity: Rarity.RareHoloGX,
category: Category.POKEMON,
set: {
name: "Unified Minds",
code: "sm11"
}
}
export default card