1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

80 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: [
"Fighting",
],
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: [
"Fighting",
],
name: {
en: "Energy Stream",
},
effect: {
en: "Search your discard pile for a basic Energy card and attach it to Kabutops.",
},
damage: 30,
},
{
cost: [
"Fighting",
"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