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

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

@ -0,0 +1,68 @@
import { Card } from '../../../interfaces'
import Set from '../Dragon'
const card: Card = {
name: {
en: "Ninjask",
},
illustrator: "Toshinao Aoki",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
291,
],
hp: 70,
types: [
"Grass",
],
evolveFrom: {
en: "Nincada",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Supersonic",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
},
damage: 10,
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Sonic Wing",
},
effect: {
en: "This attack's damage is not affected by Resistance.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card