mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
106
cards/dp/dp6/47.ts
Normal file
106
cards/dp/dp6/47.ts
Normal file
@ -0,0 +1,106 @@
|
||||
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: "dp6-47",
|
||||
localId: 47,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Camerupt",
|
||||
fr: "Camerupt",
|
||||
},
|
||||
|
||||
hp: 100,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 323,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/dp/dp6/47/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/dp/dp6/47/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/dp/dp6/47/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/dp/dp6/47/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Numel",
|
||||
fr: "Camaub",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 0,
|
||||
name: "Kagemaru Himeno"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Eruption",
|
||||
fr: "Éruption",
|
||||
},
|
||||
text: {
|
||||
en: "Each player discards the top card of his or her deck. This attack does 30 damage plus 30 more damage for each Energy card discarded in this way.",
|
||||
fr: "Chaque joueur défausse la carte du dessus de son deck. Cette attaque inflige 30 dégâts plus 30 dégâts supplémentaires pour chaque carte Énergie défaussée de cette façon.",
|
||||
},
|
||||
damage: 30
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Take Down",
|
||||
fr: "Bélier",
|
||||
},
|
||||
text: {
|
||||
en: "Camerupt does 20 damage to itself.",
|
||||
fr: "Camerupt s'inflige 20 dégâts.",
|
||||
},
|
||||
damage: 80
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Legends Awakened",
|
||||
code: "dp6"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user