mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-08 13:44:59 +00:00
20 lines
457 B
Ruby
20 lines
457 B
Ruby
MenuHandlers.add(:pause_menu, :outfit, {
|
|
"name" => _INTL("Outfit"),
|
|
"order" => 51,
|
|
"condition" => proc { $player.can_change_outfit },
|
|
"effect" => proc { |menu|
|
|
|
|
changeOutfit()
|
|
# pbFadeOutIn do
|
|
# #pbCommonEvent(COMMON_EVENT_OUTFIT)
|
|
# #todo give Favorite outfit (used to be done through common event)
|
|
# changeOutfit()
|
|
# menu.silent_end_screen
|
|
# end
|
|
next false
|
|
|
|
|
|
}
|
|
})# frozen_string_literal: true
|
|
|