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

99 lines
1.5 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: "dp2-33",
localId: 33,
// Card informations
name: {
en: "Rampardos",
},
hp: 120,
type: [
Type.FIGHTING,
],
dexId: 409,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp2/33/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp2/33/high.png",
},
},
evolveFrom: {
en: "Cranidos",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 97,
name: "Kazuyuki Kano"
},
attacks: [{
cost: [
Type.FIGHTING,
Type.COLORLESS
],
name: {
en: "Assurance",
},
text: {
en: "As long as the Defending Pokémon's remaining HP is 60 or less, this attack's base damage is 60 instead of 30.",
},
damage: 30
},{
cost: [
Type.FIGHTING,
Type.FIGHTING,
Type.FIGHTING
],
name: {
en: "Hasty Headbutt",
},
text: {
en: "Rampardos does 20 damage to itself. This attack's damage isn't affected by Weakness, Resistance, Poké-Powers, Poké-Bodies, or any other effects on the Defending Pokémon.",
},
damage: 100
}],
weaknesses: [{
type: Type.GRASS,
value: "+30"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Mysterious Treasures",
code: "dp2"
}
}
export default card