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

98 lines
1.3 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-27",
localId: 27,
// Card informations
name: {
en: "Kricketune",
},
hp: 80,
type: [
Type.GRASS,
],
dexId: 402,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp2/27/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp2/27/high.png",
},
},
evolveFrom: {
en: "Kricketot",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 9,
name: "Mitsuhiro Arita"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Sore Performance",
},
text: {
en: "The Defending Pokémon is now Asleep.",
},
damage: 20
},{
cost: [
Type.GRASS,
Type.GRASS
],
name: {
en: "Concerto",
},
text: {
en: "Does 40 damage plus 10 more damage for each Kricketot and each Kricketune you have in play.",
},
damage: 40
}],
weaknesses: [{
type: Type.FIRE,
value: "+20"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Mysterious Treasures",
code: "dp2"
}
}
export default card