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

69
data/Base/Fossil/24.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from '../../../interfaces'
import Set from '../Fossil'
const card: Card = {
name: {
en: "Kabutops",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
141,
],
hp: 60,
types: [
"Fightning",
],
evolveFrom: {
en: "Kabuto",
},
stage: "Stage2",
attacks: [
{
cost: [
"Fightning",
"Fightning",
],
name: {
en: "Sharp Sickle",
},
damage: 30,
},
{
cost: [
"Fightning",
"Fightning",
"Fightning",
"Fightning",
],
name: {
en: "Absorb",
},
effect: {
en: "Remove a number of damage counters from Kabutops equal to half the damage done to Defending Pokémon (after applying Weakness and Resistance) (rounded up to the nearest 10). If Kabutops has fewer damage counters than that, remove all of them.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
}
export default card