mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-19 18:59:17 +00:00
Finished Complete Rework of the Database
This commit is contained in:
66
data/Sword & Shield/Darkness Ablaze/71.ts
Normal file
66
data/Sword & Shield/Darkness Ablaze/71.ts
Normal file
@ -0,0 +1,66 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Darkness Ablaze'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Granbull",
|
||||
},
|
||||
illustrator: "SATOSHI NAKAI",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
hp: 130,
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Snubbull",
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Jaw Lock",
|
||||
},
|
||||
effect: {
|
||||
en: "During your opponent’s next turn, the Defending Pokémon can’t retreat.",
|
||||
},
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
"Psychic",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Headbutt Bounce",
|
||||
},
|
||||
|
||||
damage: 130,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user