1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-19 14:49:55 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

73 lines
1.2 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 '../Boundaries Crossed'
const card: Card = {
name: {
en: "Crustle",
fr: "Crabaraque",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
558,
],
hp: 100,
types: [
"Fighting",
],
evolveFrom: {
en: "Dwebble",
fr: "Crabicoque",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Sturdy",
fr: "Fermeté",
},
effect: {
en: "If this Pokémon has full HP and would be Knocked Out by damage from an attack, this Pokémon is not Knocked Out and its remaining HP becomes 10 instead.",
fr: "Si ce Pokémon a tous ses PV et doit être mis K.O. par les dégâts d'une attaque, ce Pokémon n'est pas mis K.O. mais il ne lui reste que 10 PV.",
},
},
],
attacks: [
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Stone Edge",
fr: "Lame de Roc",
},
effect: {
en: "Flip a coin. If heads, this attack does 20 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card