1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-05 13:09:53 +00:00

77 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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