1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

66
data/EX/Sandstorm/42.ts Normal file
View File

@ -0,0 +1,66 @@
import { Card } from '../../../interfaces'
import Set from '../Sandstorm'
const card: Card = {
name: {
en: "Lileep",
},
illustrator: "Midori Harada",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
345,
],
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Root Fossil",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Influence",
},
effect: {
en: "Search your deck for Omanyte, Kabuto, Aerodactyl, Lileep, or Anorith and put up to 2 of them onto your Bench. Shuffle your deck afterward. Treat the new Benched Pokémon as Basic Pokémon.",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Time Spiral",
},
effect: {
en: "If your opponent has any Evolved Pokémon in play, choose 1 of them and flip a coin. If heads, take the highest Stage Evolution card on that Pokémon and have your opponent shuffle it into his or her deck.",
},
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card