﻿
right_clear_notifications = {
    scope = character

    effect = {
        if = {
            limit = {
                exists = var:right_clear_notifications
            }
            remove_variable = right_clear_notifications
        }
        else = {
            set_variable = right_clear_notifications
        }
    }

    is_shown = {
        exists = var:right_clear_notifications
    }
}

hide_notifications_windows = {
    scope = character

    effect = {
        if = {
            limit = {
                exists = var:hide_notifications_windows
            }
            remove_variable = hide_notifications_windows
        }
        else = {
            set_variable = hide_notifications_windows
        }
    }

    is_shown = {
        exists = var:hide_notifications_windows
    }
}

hide_all_notifications = {
    scope = character

    effect = {
        if = {
            limit = {
                exists = var:hide_all_notifications
            }
            remove_variable = hide_all_notifications
        }
        else = {
            set_variable = hide_all_notifications
        }
    }

    is_shown = {
        exists = var:hide_all_notifications
    }
}