Thanks for your work! Do clubs need to be unlocked now?
class Event(object): def __init__(self,ending,title,desc,cond=[],variants=[],tags=[],**kwargs): #ending: string - used to construct the internal event name (see prefix) #title: string - nice name of the event #desc: string - description #cond: array of condition strings and event.* objects #variants: array of <variant>. <variant>: [<id>,<title>,<condition|assignment>*] #tags: array of strings - format "<key>:<value>" ####kwargs#### #priority: int - evaluation order, from low to high (default: 100) #force_prio: int - if given, used as priority, with event.only and event.once #start_msg: string - if given: introductory event, check ignores selected activity #var: <any> - initial value of event variable #ban: bool - should this event be banned at game start? (default: False) #group_count: eval - how often this event is entered into the pool events are chosen from (default: 2) #act, mod, group: string - the activity, mod and event group this event belongs to (if not given: any) #prefix: bool - should ending be prefixed to generate the event name? (default: True) #gallery: bool - should the event be added to the gallery? (default: True) #gallery_reduce_dresscodes - should dresscodes be removed as gallery options that offer no new images? (default: True) #==image logic== #auto_img: bool - should image logic be handled by the event class? (default: True) #max_img_dist: int - when to accept another dresscode, see array dresscode_distance in img.rpy (default: 0.5) #first_img: bool - use the first registered image from the image group (default: False) #solo_img: string - if given, use this image instead of an image group #pre_img: string/bool - if bool True, keeps the chosen image from being displayed # if string image name, that image will be shown instead #on_replay: string - executed before starting a replay (useful for setting vars, default "")
class event(object): #only classic events define their events with this constructor def __init__(self, name, *args, **kwargs): Event(name,"Classic Event","",list(args), priority=kwargs.get('priority',100), group_count=1, act=None, mod=None, group=None, prefix=False, auto_img=False)