1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +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 '../Delta Species'
const card: Card = {
name: {
en: "Marowak δ",
},
illustrator: "Hajime Kusajima",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
105,
],
hp: 80,
types: [
"Fightning",
"Metal",
],
evolveFrom: {
en: "Cubone",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fightning",
"Metal",
],
name: {
en: "Energy Bone",
},
effect: {
en: "Choose a number of your opponent's Pokémon up to the amount of Energy attached to Marowak. This attack does 20 damage to each of them.",
},
},
{
cost: [
"Fightning",
"Colorless",
"Colorless",
],
name: {
en: "Metal Crusher",
},
effect: {
en: "If the Defending Pokémon is Metal Pokémon, this attack's base damage is 90.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
}
export default card