1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-04 12:49:54 +00:00

48 lines
711 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Kricketune"
},
illustrator: "Naoyo Kimura",
rarity: "One Diamond",
category: "Pokemon",
hp: 90,
types: ["Grass"],
evolveFrom: {
en: "Kricketot"
},
description: {
en: "By allowing its cry to resonate in the hollow of its<br />belly, it produces a captivating sound."
},
stage: "Stage1",
attacks: [{
name: {
en: "Entrancing Melody"
},
damage: 50,
cost: ["Grass", "Colorless"],
effect: {
en: "Your opponent's Active Pokémon is now Confused."
}
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 1
}
export default card