mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-01 11:40:25 +00:00
bosses: add content for evil-santa. also add "completion" field for quest content
This commit is contained in:
parent
20d3c59c3b
commit
1f3198e77b
2 changed files with 16 additions and 12 deletions
14
dist/habitrpg-shared.js
vendored
14
dist/habitrpg-shared.js
vendored
|
|
@ -10463,12 +10463,13 @@ var global=self;/**
|
|||
|
||||
api.quests = {
|
||||
evilsanta: {
|
||||
text: "Evil Santa",
|
||||
notes: "An evil Santa Clause has captured a fully grown Polar Bear. Vanguish this evil, and save the beast!",
|
||||
text: "Trapper Santa",
|
||||
notes: "You hear bemoaned roars deep in the icefields. You follow the roars and growls - punctuated by another voice's cackling - to a clearing in the woods where you see a fully-grown polar bear. She's caged and shackled, roaring for life. Dancing atop the the cage is a malicious little imp wearing castaway Christmas costumes. Vanquish Trapper Santa, and save the beast!",
|
||||
completion: "Trapper Santa squeels in anger, and bounces off into the night. A grateful she-bear, through roars and growls, tries to tell you something. You take her back to the stables, where Matt Boch the whisperer listens to her tale with a gasp of horror. She has a cub! He ran off into the icefields when mama bear was captured. Help her find her baby!",
|
||||
value: 4,
|
||||
boss: {
|
||||
name: "Evil Santa",
|
||||
hp: 100,
|
||||
name: "Trapper Santa",
|
||||
hp: 300,
|
||||
str: 1
|
||||
},
|
||||
drop: {
|
||||
|
|
@ -10480,8 +10481,9 @@ var global=self;/**
|
|||
}
|
||||
},
|
||||
evilsanta2: {
|
||||
text: "Find Baby Bear",
|
||||
notes: "Mama bear begs you to find her cub. He ran off into the icefields when mama was captured by Evil Santa, find his tracks!",
|
||||
text: "Find The Cub",
|
||||
notes: "Mama bear's cub had run off into the icefields when she was captured by the trapper. At the edge of the woods, she sniffs the air. You hear twig-snaps and snow crunch through the crystaline sound of the forest. Paw prints! You both start racing to follow the trail. Find all the prints and broken twigs, and retrieve her cub!",
|
||||
completion: "You've found the cub! Mama and baby bear couldn't be more grateful. As a token, they've decided to keep you company till the end of days.",
|
||||
value: 4,
|
||||
previous: 'evilsanta',
|
||||
collect: {
|
||||
|
|
|
|||
|
|
@ -483,13 +483,14 @@ _.each api.food, (food,key) ->
|
|||
api.quests =
|
||||
|
||||
evilsanta:
|
||||
text: "Evil Santa" # title of the quest (eg, Deep into Vice's Layer)
|
||||
notes: "An evil Santa Clause has captured a fully grown Polar Bear. Vanguish this evil, and save the beast!"
|
||||
text: "Trapper Santa" # title of the quest (eg, Deep into Vice's Layer)
|
||||
notes: "You hear bemoaned roars deep in the icefields. You follow the roars and growls - punctuated by another voice's cackling - to a clearing in the woods where you see a fully-grown polar bear. She's caged and shackled, roaring for life. Dancing atop the the cage is a malicious little imp wearing castaway Christmas costumes. Vanquish Trapper Santa, and save the beast!"
|
||||
completion: "Trapper Santa squeels in anger, and bounces off into the night. A grateful she-bear, through roars and growls, tries to tell you something. You take her back to the stables, where Matt Boch the whisperer listens to her tale with a gasp of horror. She has a cub! He ran off into the icefields when mama bear was captured. Help her find her baby!"
|
||||
value: 4 # Gem cost to buy, GP sell-back
|
||||
#mechanic: enum['perfectDailies', ...]
|
||||
boss:
|
||||
name: "Evil Santa" # name of the boss himself (eg, Vice)
|
||||
hp: 100
|
||||
name: "Trapper Santa" # name of the boss himself (eg, Vice)
|
||||
hp: 300
|
||||
str: 1 # Multiplier of users' missed dailies
|
||||
drop:
|
||||
type: 'mounts'
|
||||
|
|
@ -499,8 +500,9 @@ api.quests =
|
|||
exp: 100 # Exp bonus from defeating the boss
|
||||
|
||||
evilsanta2:
|
||||
text: "Find Baby Bear"
|
||||
notes: "Mama bear begs you to find her cub. He ran off into the icefields when mama was captured by Evil Santa, find his tracks!"
|
||||
text: "Find The Cub"
|
||||
notes: "Mama bear's cub had run off into the icefields when she was captured by the trapper. At the edge of the woods, she sniffs the air. You hear twig-snaps and snow crunch through the crystaline sound of the forest. Paw prints! You both start racing to follow the trail. Find all the prints and broken twigs, and retrieve her cub!"
|
||||
completion: "You've found the cub! Mama and baby bear couldn't be more grateful. As a token, they've decided to keep you company till the end of days."
|
||||
value: 4
|
||||
previous: 'evilsanta'
|
||||
collect:
|
||||
|
|
|
|||
Loading…
Reference in a new issue