1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-28 14:59:19 +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,76 @@
import { Card } from '../../../interfaces'
import Set from '../Noble Victories'
const card: Card = {
name: {
en: "Crustle",
fr: "Crabaraque",
},
illustrator: "Naoyo Kimura",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
558,
],
hp: 100,
types: [
"Grass",
],
evolveFrom: {
en: "Dwebble",
fr: "Crabicoque",
},
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "X-Scissor",
fr: "Plaie-Croix",
},
effect: {
en: "Flip a coin. If heads, this attack does 50 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 50 dégâts supplémentaires.",
},
damage: 20,
},
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Reckless Charge",
fr: "Attaque Imprudente",
},
effect: {
en: "This Pokémon does 10 damage to itself.",
fr: "Ce Pokémon s'inflige 10 dégâts.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 3,
}
export default card