1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 23:22:11 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

108 lines
1.9 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: "pl3-18",
localId: 18,
// Card informations
name: {
en: "Camerupt",
fr: "Camerupt",
},
hp: 120,
type: [
Type.FIRE,
],
dexId: 323,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl3/18/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/18/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl3/18/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/18/high.png",
},
},
evolveFrom: {
en: "Numel",
fr: "Chamallot",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 22,
name: "Yukiko Baba"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Moving Fire",
fr: "Feu bougeant",
},
text: {
en: "You may move a Fire Energy card attached to 1 of your Benched Pokémon to Camerupt.",
fr: "Vous pouvez déplacer une carte Énergie Fire attachée à 1 de vos Pokémon de Banc sur Camerupt.",
},
damage: 30
},{
cost: [
Type.FIRE,
Type.FIRE,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Volcanic Crash",
fr: "Écrasement volcanique",
},
text: {
en: "Flip 3 coins. For each tails, discard the top card of your deck. Ignore this effect if your opponent has any Water Pokémon in play.",
fr: "Lancez 3 pièces. Pour chaque pile, défaussez la carte du dessus de votre deck. Ignorez cet effet si votre adversaire possède des Pokémon Water en jeu.",
},
damage: 100
}],
weaknesses: [{
type: Type.WATER,
value: "+30"
}],
retreat: 4,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Supreme Victors",
code: "pl3"
}
}
export default card