1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-13 04:17:49 +00:00
Florian Bouillon a284fcac64
Updated DB and made it work with SDK
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-03-11 09:41:29 +01:00

97 lines
1.4 KiB
TypeScript

import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
const card: Card = {
// ids
id: "pl4-14",
localId: 14,
// Card informations
name: {
en: "Bronzong",
},
hp: 90,
type: [
Type.METAL,
],
dexId: 437,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl4/14/low",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl4/14/high",
},
},
evolveFrom: {
en: "Bronzor",
},
tags: [
Tag.STAGE1,
],
illustrator: "Atsuko Nishida",
attacks: [{
cost: [
Type.METAL,
Type.COLORLESS
],
name: {
en: "Oracle Arrow",
},
text: {
en: "Choose 1 of your opponent's Pokémon that has any damage counters on it. This attack does 40 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
},{
cost: [
Type.METAL,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Antigravity",
},
text: {
en: "The Retreat Cost for Bronzong is 0 until the end of your next turn.",
},
damage: 60
}],
weaknesses: [{
type: Type.FIRE,
value: "+20"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Arceus",
code: "pl4"
}
}
export default card