1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-26 13:59:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,75 @@
import { Card } from '../../../interfaces'
import Set from '../Dragons Exalted'
const card: Card = {
name: {
en: "Boldore",
fr: "Géolithe",
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
525,
],
hp: 90,
types: [
"Fightning",
],
evolveFrom: {
en: "Roggenrola",
fr: "Nodulithe",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fightning",
],
name: {
en: "Rock Cannon",
fr: "Canon à Pierres",
},
effect: {
en: "Flip a coin until you get tails. This attack does 30 damage times the number of heads.",
fr: "Lancez une pièce jusqu'à ce que vous obteniez un côté pile. Cette attaque inflige 30 dégâts multipliés par le nombre de côtés face.",
},
damage: 30,
},
{
cost: [
"Fightning",
"Colorless",
"Colorless",
],
name: {
en: "Earthquake",
fr: "Séisme",
},
effect: {
en: "Does 10 damage to each of your Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Inflige 10 dégâts à chacun de vos Pokémon de Banc. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
damage: 60,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card