Untitled

Anonymous
plain_text
10/19/2023 9:42 PM
1.2 KB
20
Indexable
        rewards = {

            overall_container = "orange backpack",

            -- # valid rewards
            -- # items, points, boost experience

            drawn_match = {

                items = {
                    [1] = {item = "crystal coin", amount = 2}
                },

            },

            loser_team = {

                items = {
                    [1] = {item = "crystal coin", amount = 3}
                },
            },

            winner_team = {

                items = {
                    [1] = {item = "crystal coin", amount = 5}
                },

            },

            top_fragger = { -- # the top fragger is only parsed if a team wins

                items = {
                    [1] = {item = "crystal coin", amount = 10}
                },

                boost = {percent = 10, duration = 1 * 60 * 60},
                points = 3
            }
        },
Editor is loading...