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

101 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: "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.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl4/14/high.png",
},
},
evolveFrom: {
en: "Bronzor",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 32,
name: "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