1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-24 04:49:19 +00:00
Files
cards-database/data/Black & White/Black & White/64.ts
2021-05-26 14:51:02 +02:00

78 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 '../Black & White'
const card: Card = {
name: {
en: "Krokorok",
fr: "Escroco",
},
illustrator: "Kouki Saitou",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
552,
],
hp: 90,
types: [
"Fighting",
],
evolveFrom: {
en: "Sandile",
fr: "Mascaïman",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Torment",
fr: "Tourmente",
},
effect: {
en: "Choose 1 of the Defending Pokémon's attacks. That Pokémon can't use that attack during your opponent's next turn.",
fr: "Choisissez 1 des attaques du Pokémon Défenseur. Le Pokémon Défenseur ne pourra pas l'utiliser lors du prochain tour de votre adversaire.",
},
damage: 10,
},
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Bite",
fr: "Morsure",
},
damage: 50,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 2,
}
export default card