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

70
data/Base/Jungle/50.ts Normal file
View File

@ -0,0 +1,70 @@
import { Card } from '../../../interfaces'
import Set from '../Jungle'
const card: Card = {
name: {
en: "Cubone",
},
illustrator: "Mitsuhiro Arita",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
104,
],
hp: 40,
types: [
"Fightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Snivel",
},
effect: {
en: "If the Defending Pokémon attacks Cubone during your opponent's next turn, any damage done by the attack is reduced by 20 (after applying Weakness and Resistance). (Benching either Pokémon ends this effect.)",
},
},
{
cost: [
"Fightning",
"Fightning",
],
name: {
en: "Rage",
},
effect: {
en: "Does 10 damage plus 10 more damage for each damage counter on Cubone.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
resistances: [
{
type: "Lightning",
value: "-30"
},
],
}
export default card