1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

77 lines
968 B
TypeScript
Raw Permalink 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 '../Expedition Base Set'
const card: Card = {
name: {
en: "Croconaw",
fr: "Crocrodil",
de: "Tyracroc"
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
159,
],
hp: 80,
types: [
"Water",
],
evolveFrom: {
en: "Totodile",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Tackle",
fr: "Charge",
de: "Tackle"
},
damage: 20,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Take Down",
fr: "Bélier",
de: "Bodycheck"
},
effect: {
en: "Croconaw does 10 damage to itself.",
fr: "Crocrodil s'inflige 10 dégâts.",
de: "Tyracroc fügt sich selber 10 Schadenspunkte zu."
},
damage: 40,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card