1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12: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

92 lines
1.4 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: "pop7-12",
localId: 12,
// Card informations
name: {
en: "Burmy Sandy Cloak",
},
hp: 40,
type: [
Type.GRASS,
],
dexId: 412,
image: {
low: {
en: "https://assets.tcgdex.net/en/pop/pop7/12/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pop/pop7/12/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 2,
name: "Midori Harada"
},
abilities: [{
id: 358,
type: AbilityType.POKEPOWER,
name: {
en: "Wear Cloak",
},
text: {
en: "Once during your turn (before your attack), if Burmy Sandy Cloak is your Active Pokémon, you may search your discard pile for a basic Fighting Energy card and attach it to Burmy Sandy Cloak.",
}
}],
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Sandy Cloak Tackle",
},
text: {
en: "If Burmy Sandy Cloak has any Fighting Energy attached to it, this attack does 10 damage plus 10 more damage.",
},
damage: 10
}],
weaknesses: [{
type: Type.FIRE,
value: "+10"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "POP Series 7",
code: "pop7"
}
}
export default card