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

67 lines
806 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../DP Black Star Promos'
const card: Card = {
name: {
en: "Cranidos",
},
illustrator: "Mitsuhiro Arita",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
408,
],
hp: 70,
types: [
"Fighting",
],
evolveFrom: {
en: "Skull Fossil",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Headbutt",
},
damage: 20,
},
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Steamroll",
},
effect: {
en: "Does 20 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 30,
},
],
weaknesses: [
{
type: "Grass",
value: "+20"
},
],
}
export default card