1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon afd3a664ae
Fixed most POP sets (#99)
Signed-off-by: Avior <github@avior.me>
2021-10-26 17:23:45 +02:00

82 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 '../POP Series 9'
const card: Card = {
name: {
en: "Gabite",
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
444,
],
hp: 80,
types: [
"Colorless",
],
evolveFrom: {
en: "Gible",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Burrow",
},
effect: {
en: "Flip a coin. If heads, prevent all damage done to Gabite by attacks during your opponents next turn.",
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Distorted Wave",
},
effect: {
en: "Before doing damage, remove 2 damage counters from the Defending Pokémon.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Colorless",
value: "+20"
},
],
retreat: 1,
description: {
en: "It habitually digs up and hoards gems in its nest. Its loot is constantly targeted by thieves."
},
variants: {
normal: false,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card