1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-14 20:49:54 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

69 lines
925 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 '../Unified Minds'
const card: Card = {
name: {
en: "Lickitung",
fr: "Excelangue",
},
illustrator: "tetsuya koizumi",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
108,
],
hp: 100,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Heavy Draw",
fr: "Pioche Massive",
},
effect: {
en: "Draw a card for each of your Pokémon in play that has a Retreat Cost of exactly 4.",
fr: "Piochez une carte pour chacun de vos Pokémon en jeu qui a un Coût de Retraite de 4.",
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Tongue Slap",
fr: "Gros Coup de Langue",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 4,
}
export default card