mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
80 lines
1.8 KiB
TypeScript
80 lines
1.8 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Evolving Skies'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
name: {
|
||
en: "Lillipup",
|
||
fr: "Ponchiot",
|
||
es: "Lillipup",
|
||
it: "Lillipup",
|
||
pt: "Lillipup",
|
||
de: "Yorkleff"
|
||
},
|
||
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 60,
|
||
types: ["Colorless"],
|
||
stage: "Basic",
|
||
illustrator: "Naoyo Kimura",
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Lead",
|
||
fr: "Mentor",
|
||
es: "Liderazgo",
|
||
it: "Guidare",
|
||
pt: "Lead",
|
||
de: "Führen"
|
||
},
|
||
|
||
effect: {
|
||
en: "Search your deck for a Supporter card, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||
fr: "Cherchez dans votre deck une carte Supporter, montrez-la, puis ajoutez-la à votre main. Mélangez ensuite votre deck.",
|
||
es: "Busca en tu baraja 1 carta de Partidario, enséñala y ponla en tu mano. Después, baraja las cartas de tu baraja.",
|
||
it: "Cerca nel tuo mazzo una carta Aiuto, mostrala e aggiungila a quelle che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
||
pt: "Search your deck for a Supporter card, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||
de: "Durchsuche dein Deck nach 1 Unterstützerkarte, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck."
|
||
},
|
||
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
en: "Tackle",
|
||
fr: "Charge",
|
||
es: "Placaje",
|
||
it: "Azione",
|
||
pt: "Tackle",
|
||
de: "Tackle"
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
dexId: [506],
|
||
|
||
description: {
|
||
en: "This Pokémon is popular with beginners because it's intelligent, obedient to its Trainer's commands, and easy to raise."
|
||
},
|
||
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card
|