mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
122 lines
2.3 KiB
TypeScript
122 lines
2.3 KiB
TypeScript
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: "dp7-10",
|
|
localId: 10,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Sceptile",
|
|
fr: "Sceptile",
|
|
},
|
|
|
|
hp: 110,
|
|
|
|
type: [
|
|
Type.GRASS,
|
|
],
|
|
|
|
dexId: 254,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp7/10/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp7/10/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp7/10/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp7/10/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Grovyle",
|
|
fr: "Massko",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE2,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 29,
|
|
name: "Suwama Chiaki"
|
|
},
|
|
|
|
abilities: [{
|
|
id: 242,
|
|
type: AbilityType.POKEPOWER,
|
|
name: {
|
|
en: "Energy Trans",
|
|
fr: "Transfert d'énergie",
|
|
},
|
|
text: {
|
|
en: "As often as you like during your turn (before your attack), move a Grass Energy card attached to 1 of your Pokémon to another of your Pokémon. This power can't be used if Sceptile is affected by a Special Condition.",
|
|
fr: "Autant de fois que vous le voulez lors de votre tour (avant votre attaque), déplacez une carte Énergie Grass attachée à 1 de vos Pokémon sur 1 autre de vos Pokémon. Ce pouvoir ne peut pas être utilisé si Jungko est affecté par un État Spécial.",
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.COLORLESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Poison Leaf",
|
|
fr: "Feuille poison",
|
|
},
|
|
text: {
|
|
en: "The Defending Pokémon is now Poisoned.",
|
|
fr: "Le Pokémon Défenseur est maintenant Empoisonné.",
|
|
},
|
|
damage: 40
|
|
},{
|
|
cost: [
|
|
Type.GRASS,
|
|
Type.GRASS,
|
|
Type.COLORLESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Slice Drain",
|
|
fr: "Trancher jusqu'au bout",
|
|
},
|
|
text: {
|
|
en: "Remove 2 damage counters from Sceptile.",
|
|
fr: "Retirez à Jungko 2 marqueurs de dégât.",
|
|
},
|
|
damage: 60
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.FIRE,
|
|
value: "+30"
|
|
}],
|
|
|
|
resistances: [{
|
|
type: Type.WATER,
|
|
value: "-20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
|
|
rarity: Rarity.RareHolo,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Stormfront",
|
|
code: "dp7"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|