feat: added ascension logic 4-7, added new decision (eating fast food), indicating meter changes better, added discussions (needs more work, but meh ... fine like this)
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
This commit is contained in:
11
inc/decision/decision.eating_fast_food.lua
Normal file
11
inc/decision/decision.eating_fast_food.lua
Normal file
@@ -0,0 +1,11 @@
|
||||
Decision.register({
|
||||
id = "eating_fast_food",
|
||||
label = "Eat Fast Food",
|
||||
condition = function()
|
||||
return Context.fast_food_eaten_today < 3
|
||||
end,
|
||||
handle = function()
|
||||
Context.fast_food_approaching = true
|
||||
Discussion.start("pizza_vendor_disc", "game")
|
||||
end,
|
||||
})
|
||||
Reference in New Issue
Block a user