1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 02:59:53 +00:00
Khaleeq Ahmad a597759d9d
fix: Pocket card data fixes (#659)
Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
2025-02-19 21:52:42 +01:00

45 lines
758 B
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 "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Lickitung"
},
illustrator: "Kagemaru Himeno",
category: "Pokemon",
hp: 90,
types: ["Colorless"],
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless", "Colorless"],
name: {
en: "Continuous Lick"
},
effect: {
en: "Flip a coin until you get tails. This attack does 60 damage for each heads."
},
damage: "60×"
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 3,
rarity: "Two Diamond",
description: {
en: "If this Pokémon's sticky saliva gets on you and you don't clean it off, an intense itch will set in. The itch won't go away, either.",
}
}
export default card