mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 01:49:19 +00:00
feat: Add A3a - Extradimensional Crisis (#752)
This commit is contained in:
56
data/Pokémon TCG Pocket/Extradimensional Crisis/027.ts
Normal file
56
data/Pokémon TCG Pocket/Extradimensional Crisis/027.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Extradimensional Crisis"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Shiinotic"
|
||||
},
|
||||
|
||||
illustrator: "kawayoo",
|
||||
rarity: "Three Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Psychic"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Morelull"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "Its flickering spores lure in prey and put them to\nsleep. Once this Pokémon has its prey snoozing,\nit drains their vitality with its fingertips."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Illuminate"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Once during your turn, you may put a random Pokémon from your deck into your hand."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Gentle Slap"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user