1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 10:59:54 +00:00

69 lines
869 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Next Destinies'
const card: Card = {
name: {
en: "Kricketot",
fr: "Crikzik",
},
illustrator: "MAHOU",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
401,
],
hp: 60,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Beat",
fr: "Bataille",
},
damage: 10,
},
{
cost: [
"Grass",
"Grass",
],
name: {
en: "Double Headbutt",
fr: "Double Coup d'Boule",
},
effect: {
en: "Flip 2 coins. This attack does 10 more damage for each heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 10 dégâts supplémentaires pour chaque côté face.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card