Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
917 B
1
Indexable
Never
        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}
                },

                boosts = {percent = 10, duration = 1 * 60 * 60},

                points = 0
            }
        },