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

70 lines
973 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Arceus'
const card: Card = {
name: {
en: "Kabutops",
},
illustrator: "Hajime Kusajima",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
141,
],
types: [
"Fighting",
],
evolveFrom: {
en: "Kabuto",
},
stage: "Stage2",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Primal Scythe",
},
effect: {
en: "You may discard Helix Fossil, Dome Fossil, or Old Amber from your hand. If you do, this attack does 20 damage plus 50 more damage.",
},
damage: "20+",
},
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Rock Slide",
},
effect: {
en: "Does 10 damage to 2 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 60,
},
],
weaknesses: [
{
type: "Grass",
value: "+30"
},
],
retreat: 2,
}
export default card