local CLASS = Clockwork.class:New("Civil Worker's Union"); -- What the player will be classified as in the scoreboard. CLASS.color = Color(0, 100, 255, 255); -- RGBA color for chat CLASS.wages = 100; -- Paycheck CLASS.factions = {FACTION_CWU}; -- What faction uses this class? Make sure to match it with the faction you created above CLASS.isDefault = true; -- When a player makes a character with your faction, this is the class they are given automatically. CLASS.wagesName = "Supplies"; -- The upper-right hand corner text for "You have received n tokens (Supplies)". CLASS.description = "A loyal member of the Universal Union."; -- The scoreboard description CLASS.defaultPhysDesc = "Standard issue Civil Worker's Union uniform."; -- The default physical description (If the player didn't set one) CLASS_CWU = CLASS:Register();