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

49
data/EX/Dragon/68.ts Normal file
View File

@ -0,0 +1,49 @@
import { Card } from '../../../interfaces'
import Set from '../Dragon'
const card: Card = {
name: {
en: "Nincada",
},
illustrator: "Hajime Kusajima",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
290,
],
hp: 50,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
name: {
en: "Leech Life",
},
effect: {
en: "After your attack, remove from Nincada the number of damage counters equal to the damage you did to the Defending Pokémon. If Nincada has fewer damage counters than that, remove all of them.",
},
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card