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

78 lines
1.5 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 '../Emerging Powers'
const card: Card = {
name: {
en: "Krookodile",
fr: "Crocorible",
},
illustrator: "Naoki Saito",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
553,
],
hp: 140,
types: [
"Fighting",
],
evolveFrom: {
en: "Krokorok",
fr: "Escroco",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Black Eyes",
fr: "Œil Noir",
},
effect: {
en: "Once during your turn (before your attack), if this Pokémon is your Active Pokémon, you may flip a coin. If heads, discard an Energy attached to your opponent's Active Pokémon.",
fr: "Une seule fois pendant votre tour (avant votre attaque), si ce Pokémon est votre Pokémon Actif, vous pouvez lancer une pièce. Si c'est face, défaussez une Énergie attachée au Pokémon Actif de votre adversaire.",
},
},
],
attacks: [
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Thrash",
fr: "Mania",
},
effect: {
en: "Flip a coin. If heads, this attack does 20 more damage. If tails, this Pokémon does 20 damage to itself.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires. Si c'est pile, ce Pokémon s'inflige 20 dégâts.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 3,
}
export default card