1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 19:40:48 +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

View File

@ -0,0 +1,62 @@
import { Card } from '../../../interfaces'
import Set from '../Neo Revelation'
const card: Card = {
name: {
en: "Shuckle",
},
illustrator: "Yuka Morii",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
213,
],
hp: 40,
types: [
"Fightning",
],
stage: "Basic",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Hard Shell",
},
effect: {
en: "Whenever an attack (including your own) does 40 or less damage to Shuckle (after applying Weakness and Resistance), reduce that damage to 10. (Any other effects of attacks still happen.) This power stops working while Shuckle is Asleep, Confused, or Paralyzed.",
},
},
],
attacks: [
{
cost: [
"Grass",
"Grass",
],
name: {
en: "Toxic Saliva",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned. It now takes 20 Poison damage after each player's turn (even if it was already Poisoned).",
},
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
}
export default card