1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-01 12:22:02 +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

98
cards/pop/pop4/5.ts Normal file
View File

@@ -0,0 +1,98 @@
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: "pop4-5",
localId: 5,
// Card informations
name: {
en: "Sceptile",
},
hp: 100,
type: [
Type.GRASS,
],
dexId: 254,
image: {
low: {
en: "https://assets.tcgdex.net/en/pop/pop4/5/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pop/pop4/5/high.png",
},
},
evolveFrom: {
en: "Grovyle",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 32,
name: "Atsuko Nishida"
},
abilities: [{
id: 242,
type: AbilityType.POKEPOWER,
name: {
en: "Energy Trans",
},
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.",
}
}],
attacks: [{
cost: [
Type.GRASS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Tail Rap",
},
text: {
en: "Flip 2 coins. This attack does 50 damage times the number of heads.",
},
damage: 50
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.WATER,
value: "-30"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "POP Series 4",
code: "pop4"
}
}
export default card