mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-21 11:29:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
52
data/Sword & Shield/Sword & Shield/125.ts
Normal file
52
data/Sword & Shield/Sword & Shield/125.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Sword & Shield'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Nickit",
|
||||
fr: "Goupilou",
|
||||
},
|
||||
illustrator: "kirisAki",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
hp: 70,
|
||||
types: [
|
||||
"Darkness",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Darkness",
|
||||
],
|
||||
name: {
|
||||
en: "Instigate",
|
||||
fr: "Provocation",
|
||||
},
|
||||
effect: {
|
||||
en: "Your opponent shuffles their hand and puts it on the bottom of their deck. If they put any cards on the bottom of their deck in this way, they draw 3 cards.",
|
||||
fr: "Votre adversaire mélange sa main, puis la place en dessous de son deck. S’il place ainsi au moins une carte en dessous de son deck, il pioche 3 cartes.",
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user