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

79
data/EX/Legend Maker/7.ts Normal file
View File

@ -0,0 +1,79 @@
import { Card } from '../../../interfaces'
import Set from '../Legend Maker'
const card: Card = {
name: {
en: "Kabutops",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
141,
],
hp: 110,
types: [
"Fightning",
],
evolveFrom: {
en: "Kabuto",
},
stage: "Stage2",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Ancient Shell",
},
effect: {
en: "As long as you have Omanyte or Omastar in play, damage done to Kabutops by attacks is reduced by 20 (after applying Weakness and Resistance).",
},
},
],
attacks: [
{
cost: [
"Fightning",
],
name: {
en: "Energy Stream",
},
effect: {
en: "Search your discard pile for a basic Energy card and attach it to Kabutops.",
},
damage: 30,
},
{
cost: [
"Fightning",
"Colorless",
"Colorless",
],
name: {
en: "Extra Claws",
},
effect: {
en: "If the Defending Pokémon is Pokémon-ex, this attack does 50 damage plus 30 more damage.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
}
export default card