1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 09:59:19 +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,70 @@
import { Card } from '../../../interfaces'
import Set from '../Lost Thunder'
const card: Card = {
name: {
en: "Ninjask",
fr: "Ninjask",
},
illustrator: "kirisAki",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
291,
],
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Nincada",
fr: "Ningale",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Molting",
fr: "Renouvellement",
},
effect: {
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may put a Shedinja from your discard pile onto your Bench.",
fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer lun de vos Pokémon pendant votre tour, vous pouvez placer un Munja de votre pile de défausse sur votre Banc.",
},
},
],
attacks: [
{
cost: [
"Grass",
],
name: {
en: "X-Scissor",
fr: "Plaie-Croix",
},
effect: {
en: "Flip a coin. If heads, this attack does 40 more damage.",
fr: "Lancez une pièce. Si cest face, cette attaque inflige 40 dégâts supplémentaires.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card