1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49: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,66 @@
import { Card } from '../../../interfaces'
import Set from '../Skyridge'
const card: Card = {
name: {
en: "Kabutops",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
141,
],
hp: 90,
types: [
"Fightning",
],
evolveFrom: {
en: "Kabuto",
},
stage: "Stage2",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Primal Aura",
},
effect: {
en: "As long as Kabutops is your Active Pokémon, neither player can play Basic Pokémon or Evolution cards from his or her hand to evolve Benched Pokémon.",
},
},
],
attacks: [
{
cost: [
"Fightning",
"Fightning",
"Colorless",
],
name: {
en: "Dual Cut",
},
effect: {
en: "Flip 2 coins. This attack does 50 damage times the number of heads.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
}
export default card