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

102 lines
1.7 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: "dp1-28",
localId: 28,
// Card informations
name: {
en: "Heracross",
fr: "Scarhino",
},
hp: 80,
type: [
Type.GRASS,
],
dexId: 214,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp1/28/low.png",
fr: "https://assets.tcgdex.net/fr/dp/dp1/28/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp1/28/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp1/28/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 5,
name: "Ken Sugimori"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Pitch",
fr: "Lancer",
},
text: {
en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.",
fr: "Votre adversaire échange le Pokémon Défenseur avec 1 des Pokémon de son Banc.",
},
damage: 10
},{
cost: [
Type.GRASS,
Type.GRASS
],
name: {
en: "Horn Slash",
fr: "Tranch'korne",
},
text: {
en: "Flip a coin. If heads, this attack does 30 damage plus 30 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts plus 30 dégâts supplémentaires.",
},
damage: 30
}],
weaknesses: [{
type: Type.FIRE,
value: "+20"
}],
retreat: 2,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Diamond & Pearl",
code: "dp1"
}
}
export default card