mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-06 17:27:52 +00:00
57 lines
825 B
TypeScript
57 lines
825 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Detective Pikachu'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Lickitung",
|
||
fr: "Excelangue",
|
||
},
|
||
illustrator: undefined,
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
108,
|
||
],
|
||
hp: 100,
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Continuous Lick",
|
||
fr: "Langue Sans Fin",
|
||
},
|
||
effect: {
|
||
en: "Flip a coin until you get tails. This attack does 20 damage for each heads.",
|
||
fr: "Lancez une pièce jusqu’à ce que vous obteniez un côté pile. Cette attaque inflige 20 dégâts pour chaque côté face.",
|
||
},
|
||
damage: 20,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 3,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|