mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-29 02:59:53 +00:00
45 lines
758 B
TypeScript
45 lines
758 B
TypeScript
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
|