forked from SilverStudioGames/WTS
Gouvernathor
a5b47a41e7
using renpy.render, wtf (cherry picked from commit 3278b1f4afdb9ce887cdac0e87c28a61b974a737)
22 lines
474 B
Plaintext
22 lines
474 B
Plaintext
label gift_menu:
|
|
$ inventory_mode = 1
|
|
$ gui.in_context("inventory_menu")
|
|
$ inventory_mode = 0
|
|
return
|
|
|
|
label give_gift(text, gift):
|
|
show screen gift(gift)
|
|
with d3
|
|
"[text]"
|
|
hide screen gift
|
|
with d3
|
|
$ gift.owned -= 1
|
|
|
|
screen gift(gift):
|
|
zorder 30
|
|
|
|
if isinstance(gift, Item):
|
|
add gift.get_image() align (0.5, 0.4) xysize (320, 320) fit "contain"
|
|
else:
|
|
add gift align (0.5, 0.4) xysize (320, 320) fit "contain"
|