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(arg0) { switch (arg0) { case "G. Cactus": return 3; break; default: return 0; } }
(arg0)
2
{
3
    switch (arg0)
4
    {
5
        case "G. Cactus":
6
            return 3;
7
            break;
8
        default:
9
            return 0;
10
    }
11
}