Undertale Yellow script viewer

← back to main script listing

gml_GlobalScript_scr_item_stats_restore

(view raw script w/o annotations or w/e)
1
function scr_item_stats_restore
scr_item_stats_restore

function scr_item_stats_restore(argument0) //gml_Script_scr_item_stats_restore { switch argument0 { case "G. Cactus": return 3; default: return 0; } }
(argument0) //gml_Script_scr_item_stats_restore
2
{
3
    switch argument0
4
    {
5
        case "G. Cactus":
6
            return 3;
7
        default:
8
            return 0;
9
    }
10
11
}