全球魔法事务监测局
:root {
    --lh-red: #c0392b;
    --lh-blue: #2980b9;
    --lh-green: #27ae60;
    --lh-dark-green: #16a085;
    --lh-purple: #8e44ad;
    --lh-orange: #e67e22;
    --lh-yellow: #f1c40f;
 
    --lh-paper-bg: 255, 251, 240;
    --lh-string-color: 192, 57, 43;
    --lh-book-color: var(--gray-monochrome);
    --lh-tape-color: 90,90,90,0.3;
    --lh-white-bg: 249,249,249;
    --lh-dark-bg: 50, 50, 50;
    --lh-highlighter: var(--bright-accent);
    --lh-border-color: var(--gray-monochrome);
    --lh-wiki-note-color: var(--bright-accent)
}
 
/**
 *  旧代码合集
 *  为了向下兼容而保留
 */
 
.grid-container{display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.grid-container,.grid-container [class*=grid]{box-sizing:border-box}[class*=grid]{padding:5px}.grid{width:100%}.grid-large{width:75%}.grid-big{width:50%}.grid-medium{width:33.33%}.grid-small{width:25%}@media screen and (min-width:768px){.wd-grid-large{width:75%}.wd-grid,.wd-grid-big{width:50%}.wd-grid-medium{width:33.33%}.wd-grid-small{width:25%}}.text-hover-hide{opacity:0;transition:opacity .3s}.text-hover-hide:hover{opacity:1}.text-block-hide{background:rgb(var(--black-monochrome));color:rgb(var(--black-monochrome));transition:background .3s}.text-block-hide:hover{background:0 0}.text-blur-hide,.text-blur-hover-hide{filter:blur(.3rem);-webkit-filter:blur(.3rem) transition: blur .3s}.text-blur-hover-hide:hover{filter:blur(0);-webkit-filter:blur(0)}.lyric-box{text-align:center;font-size:1.05rem;display:flex;flex-direction:column;flex-wrap:wrap;justify-content:center}.lyric-box p{margin:1.5em auto}.lyric-box.with-bigger-line p{margin:3em auto}
 
/**
 *  便签纸
 *  notepaper
 */
 
.notepaper {
    background: linear-gradient(rgb(var(--lh-paper-bg)) 95%, #ddd 0);
    line-height: 2em;
    background-size: 100% 2em;
    background-attachment: local;
    border: 2em solid rgb(var(--lh-paper-bg));
    box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.2);
    padding: 0;
    margin: 1em auto;
    box-sizing: border-box;
    position: relative
}
.notepaper p {
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: 0.1rem;
    line-height: inherit
}
.notepaper.narrow,
.notepaper.wide {
        width: 90%
}
@media screen and (min-width:768px){
    .notepaper.narrow {
        width: 50%
    }
    .notepaper.wide {
        width: 75%
    }
}
 
.notepaper.tight {
    border-width: 1rem;
    border-left-width: 1.2rem;
    border-right-width: 1.2rem;
    line-height: 1.8em;
    background-size: 100% 1.8em;
    font-size: 13px
}
 
.notepaper.with-string::before {
    content: '';
    width: 0.5em;
    height: 6rem;
    background: rgb(var(--lh-string-color));
    top: -2rem; right: -1rem;
    display: block;
    position: absolute;
    box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2);
    clip-path: polygon(-100% -100%,100% 0%,100% 100%,50% 98%,0% 100%);
}
.notepaper.with-tape::before {
    content: '';
    border: 1px solid #ddd;
    background: rgba(var(--lh-tape-color));
    width: 1.5em;
    height: 4em;
    transform: rotate(45deg);
    display: block;
    position: absolute;
    top: -3em;
    left: -1.8em
}
 
.notepaper.tight.with-string::before {
    top: -1rem; 
    right: -0.25rem;
}
.notepaper.tight.with-tape::before {
    top: -2.5em;
    left: -1.3em
}
 
.notepaper.page {
    min-height: 36em;
    counter-increment: page;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}
@media screen and (min-width:768px){
    .notepaper.page {
        width: 70%
    }
}
.notepaper.page:after {
    content: counter(page);
    display: block;
    text-align: center
}
.notepaper-group {
    counter-reset: page;
}
 
.book-pattern {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row
}
.book-pattern .notepaper.page:not(.notepaper > .notepaper) {
    width: 100%
}
@media screen and (min-width: 768px) {
    .book-pattern .notepaper.page:not(.notepaper > .notepaper) {
        width: 50%
    }
}
 
.book-wrapper {
    background: rgb(var(--lh-book-color));
    padding: 0.5rem;
    box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.2);
    border-radius: 5px;
    margin: 1rem auto
}
@media screen and (min-width: 768px) {
    .book-wrapper .notepaper {
        margin: 0
    }
}
 
/**
 *  文字修饰
 */
 
.text-highlighted {
    position: relative
}
.text-highlighted::before {
    content: "";
    position: absolute;
    height: 0.9em;
    bottom: 2px;
    left: -2px;
    width: 105%;
    z-index: -1;
    background-color: rgb(var(--lh-highlighter));
    opacity: .6;
    transform: skew(-15deg);
    transition: opacity .2s ease;
    border-radius: 3px 8px 10px 6px;
    transition: 0.1s ease background-color;
}
 
.text-underlined {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    text-decoration-color: rgb(var(--lh-highlighter))
}
.text-wavy {
    text-decoration: underline wavy;
    text-underline-offset: 4px;
    text-decoration-color: rgb(var(--lh-highlighter))
}
 
.text-circled,
.text-squared {
    display: inline-block;
    border: 2px solid rgb(var(--lh-highlighter));
    border-radius: 100%;
    box-sizing: border-box
}
.text-squared { border-radius: 0 }
 
.text-shadow { text-shadow: 0.075em 0.075em 0 rgb(var(--lh-highlighter)) }
 
.text-highlighted.td-red::before { background: var(--lh-red) }
.text-circled.td-red, .text-squared.td-red { border-color: var(--lh-red) }
.text-underlined.td-red, .text-wavy.td-red { text-decoration-color: var(--lh-red) }
 
.text-highlighted.td-blue::before { background: var(--lh-blue) }
.text-circled.td-blue, .text-squared.td-blue { border-color: var(--lh-blue) }
.text-underlined.td-blue, .text-wavy.td-blue { text-decoration-color: var(--lh-blue) }
 
.text-highlighted.td-green::before { background: var(--lh-green) }
.text-circled.td-green, .text-squared.td-green { border-color: var(--lh-green) }
.text-underlined.td-green, .text-wavy.td-green { text-decoration-color: var(--lh-green) }
 
.text-highlighted.td-darkgreen::before { background: var(--lh-dark-green) }
.text-circled.td-darkgreen, .text-squared.td-darkgreen { border-color: var(--lh-dark-green) }
.text-underlined.td-darkgreen, .text-wavy.td-darkgreen { text-decoration-color: var(--lh-dark-green) }
 
.text-highlighted.td-purple::before { background: var(--lh-purple) }
.text-circled.td-purple, .text-squared.td-purple { border-color: var(--lh-purple) }
.text-underlined.td-purple, .text-wavy.td-purple { text-decoration-color: var(--lh-purple) }
 
.text-highlighted.td-yellow::before { background: var(--lh-yellow) }
.text-circled.td-yellow, .text-squared.td-yellow { border-color: var(--lh-yellow) }
.text-underlined.td-yellow, .text-wavy.td-yellow { text-decoration-color: var(--lh-yellow) }
 
.text-highlighted.td-orange::before { background: var(--lh-orange) }
.text-circled.td-orange, .text-squared.td-orange { border-color: var(--lh-orange) }
.text-underlined.td-orange, .text-wavy.td-orange { text-decoration-color: var(--lh-orange) }
 
/* 隐藏文字 */
 
.text-blank { color: rgba(0,0,0,0) }
.text-block { 
    background: rgb(var(--black-monochrome));
    color: rgb(var(--black-monochrome)); 
}
.text-blur { 
    filter: blur(0.3em);
    -webkit-filter: blur(0.3em)
}
 
.text-hoverback,
.text-selectback {
    transition-duration: 0.3s;
    transition-property: background, transform, color
}
 
.text-blank.text-hoverback:hover,
.text-blank.text-selectback::selection,
.text-blank.text-selectback *::selection { color: rgb(var(--black-monochrome)) }
 
.text-block.text-hoverback:hover { background: transparent!important }
.text-block.text-selectback::selection,
.text-block.text-selectback *::selection { color: rgb(var(--white-monochrome, 255, 255, 255)) }
 
.text-blur.text-hoverback:hover { filter: blur(0)!important; -webkit-filter: blur(0)!important }
 
/**
 * 附加项
 */
.with-border, .with-box-style { border: 1px solid rgb(var(--bright-accent)) }
.with-border-dark { border: 1px solid rgb(var(--black-monochrome)) }
.with-border-light { border: 1px solid rgb(var(--white-monochrome)) }
.with-border-thick { border-width: 2px }
 
.with-shadow-sm { box-shadow: 0 0 0.1em rgba(0,0,0,0.2) }
.with-shadow { box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2) }
.with-shadow-lg { box-shadow: 0 0.15em 0.3em rgba(0,0,0,0.2) }
.with-shadow-xl { box-shadow: 0 0.2em 0.5em rgba(0,0,0,0.2) }
.with-shadow-xxl { box-shadow: 0 0.25em 0.8em rgba(0,0,0,0.2) }
 
.with-padding, .with-box-style { padding: 0.25em 1em }
.with-p-sm { padding: 0.125em 0.5em }
.with-p-lg { padding: 0.5em 2em }
 
.with-margin, .with-box-style { margin: 1em auto }
.with-m-sm { margin: 0.5em auto }
.with-m-lg { margin: 2em auto }
 
.with-narrow-width { 
    width: 90%!important; 
    margin-left: auto; 
    margin-right: auto 
}
@media screen and (min-width: 768px) {
    .with-narrow-width { width: 75%!important }
}
[class*="with-bg-"], [class*="with-bg-"] h1 { color: #fff!important }
.with-bg-red { background: var(--lh-red)!important }
.with-bg-blue { background: var(--lh-blue)!important }
.with-bg-green { background: var(--lh-green)!important }
.with-bg-darkgreen { background: var(--lh-dark-green)!important }
.with-bg-yellow { background: var(--lh-yellow)!important }
.with-bg-orange { background: var(--lh-orange)!important }
.with-bg-purple { background: var(--lh-purple)!important }
 
/**
 * 删除类
 */
 
.offwith-shadow { box-shadow: none!important }
.offwith-border { border: none!important }
.offwith-padding, .offwith-pam { padding: 0!important }
.offwith-margin, .offwith-pam { margin: 0!important }
 
.offwith-width-limit {
    width: auto!important;
    margin-left: auto!important;
    margin-right: auto!important
}
 
div[class*="grider"].offwith-grid-gap { grid-gap: 0!important }
 
/**
 * 网格布局
 */
 
/* Gridder 容器 */
 
div[class*="gridder"] {
    display: grid;
    box-sizing: border-box;
    grid-gap: 1rem;
    padding: 0
}
div[class*="gridder"] * { box-sizing: border-box }
 
.gridder, .gridder-col-2 {
    grid-template-columns: 1fr 1fr;
}
.gridder-col-3 {
    grid-template-columns: repeat(3, 1fr);
}
.gridder-col-4 {
    grid-template-columns: repeat(4, 1fr);
}
 
@media screen and (min-width: 768px) {
    .pc-gridder, .pc-gridder-col-2 {
       grid-template-columns: 1fr 1fr;
   }
   .pc-gridder-col-3 {
       grid-template-columns: repeat(3, 1fr);
   }
   .pc-gridder-col-4 {
       grid-template-columns: repeat(4, 1fr);
   }
}
 
.spanner, .spanner-2 {
    grid-column-start: span 2;
}
.spanner-3 {
    grid-column-start: span 3;
}
 
/**
 * 告示组件
 */
.signblock,
.signblock-dark,
.signblock-warn {
    margin: 1rem auto;
    box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.4);
    background: rgb(var(--lh-white-bg));
    font-size: 1.05rem;
    padding: 2rem
}
@media screen and (min-width: 768px) {
    .signblock,
    .signblock-dark,
    .signblock-warn {
        width: 75%
    }
}
.signblock-dark, 
.signblock-dark h1 {
    background: rgb(var(--lh-dark-bg));
    color: #fff
}
.signblock-warn, 
.signblock-warn h1 {
    background: var(--lh-red);
    color: #fff
}
 
.signblock h1,
.signblock-dark h1,
.signblock-warn h1 {
    text-align: center;
    font-size: 2rem;
    margin: 0;
    font-weight: 700
}
.signblock-img {
    display: flex;
    flex-direction: row;
    justify-content: center
}
.signblock-img img {
    width: 8em
}
.signblock-footer {
    font-size: 0.9em;
    text-align: center;
    margin: 0.5rem 0;
    font-weight: bolder;
    display: block
}
 
/**
 * 报告
 */
 
.reportblock,
.reportblock-dark {
    border: 2px solid rgb(var(--lh-border-color));
    box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3);
    background: rgb(var(--white-monochrome));
    padding: 0.8rem 1.5rem;
    padding-bottom: 0.4rem;
    margin: 1.5rem auto;
    margin-bottom: 1rem;
    position: relative
}
 
.reportblock hr,
.reportblock-dark hr {
    background-color: rgb(var(--lh-border-color));
    margin-left: -1.5rem;
    margin-right: -1.5rem
}
 
.reportblock h1:first-child,
.reportblock-dark h1:first-child {
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    font-size: 110%;
    font-weight: 600;
    background: rgb(var(--lh-border-color));
    color: #fff;
    padding: 0.2rem 0.5rem;
    margin: 0;
}
 
.reportblock-dark,
.reportblock-dark h1 {
    border-color: rgb(var(--lh-white-bg));
    background: rgb(var(--lh-dark-bg));
    color: #fff
}
 
.reportblock-dark hr {
    background-color: rgb(var(--lh-white-bg));
}
 
/* 更好的折叠框 */
 
.bettercollap {
  margin: 1em 0;
}
 
.bettercollap .collapsible-block {
  width: auto;
  overflow: hidden;
  border: 1px solid rgb(var(--lh-border-color))
}
 
.bettercollap .collapsible-block-content,
.bettercollap .collapsible-block-link {
  background: rgb(var(--white-monochrome));
  padding: 0.5em
}
 
.bettercollap .collapsible-block-content {
  padding-left: 1em;
  padding-right: 1em
}
 
.bettercollap .collapsible-block-link {
  color: rgb(var(--lh-border-color));
  background: rgb(var(--white-monochrome));
  transition: .3s;
  display: block;
}
.bettercollap .collapsible-block-link:hover,
.bettercollap .collapsible-block-unfolded .collapsible-block-link,
.styledcollap.bettercollap .collapsible-block-link {
  color: rgb(var(--white-monochrome));
  background: rgb(var(--lh-border-color))!important;
  text-decoration: none
}
 
.bettercollap .collapsible-block-link:hover a { color: rgb(var(--white-monochrome)) }
 
.bettercollap .collapsible-block-link::before {
  content: "\25BC";
  display: inline-block;
  margin-right: 0.5em;
  transform: rotate(-90deg) scale(0.9)
}
.bettercollap .collapsible-block-unfolded .collapsible-block-link::before {
   transform: rotate(0) scale(0.9)
}
 
.bettercollap .collapsible-block + .collapsible-block { border-top: none }
 
.styledcollap.bettercollap .collapsible-block {
  border-radius: 2px;
  box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3)
}
 
.styledcollap.bettercollap .collapsible-block-content {
  background-color: rgb(var(--pale-gray-monochrome));
  border-width: 3px
}
 
.styledcollap.bettercollap .collapsible-block-link:hover {
  background: rgba(var(--lh-border-color),0.95)!important;
}
 
/**
 * 提示框
 */
 
.infoblock {
    color: #f1f1f1;
    font-weight: bold;
    background: #424242;
    padding: 5px 5px 5px 5px;
    border-radius: 4px;
    margin: -0.5rem 0 1rem 0;
    display: block;
    width: fit-content;
    padding-right: 25px;
}
 
.infoblock::before {
    content: "ⓘ "
}
 
/**
 * 单页迭代 
 */
 
.offset-page:not(:target), .offset-page:target ~ div#u-default-page { display: none }
.offset-page:target { display: block }

全球魔法事务监测局G Ü F M A


Wir fangen, wir erforschen.我们抓捕,我们探索

全球魔法事务监测局

全球魔法监测局(Globaler Überwachungsamt für Magische Angelegenheite)是由苏列格政府与洛雨叶灼日等国政府共同组建的“以旨在监测全球范围内所有的异常魔法事务与抓捕高危险性的魔法人员而建立的应急性组织”,其总部设在苏列格堡公国城市特瑞星纳港

%E5%8F%B0%E7%87%83%E6%94%BE%E5%B7%A5%E4%BC%9A.png

标志

职能

该组织的核心任务是抓捕高危险性的犯罪(魔法使用者)和寻找异常魔法事务并进行研究,在人员构成上事务局内除文职人员外主要由各国政府提供武装人员进行各项高危活动,不过该组织有自行组建小规模特种部队(主要由魔法使用者构成)的权力。

对于普通人来说他们可以通过学习和修炼来加强自身的魔法,但在这世上有一部分人天生便拥有强大的魔法,这使得他们能够更快的学习魔法,同时他们还具备某些特殊的能力,这一般是未知和随机的,此外由于未知的原因这一类人群相较的普通人更加易怒且冲动,其中部分还持有疑似天生的厌世与消极的心态。而以上所总和便是在局内被标为高危险单位魔灵群体

魔灵

按照分级魔灵群体可从17分为七个等级,其中数字越大等级越高,相应的等级越高人数越少,魔法强度也越高。
关于这一类人群天生魔法强大的原因还是个谜团,但经研究发现有相当一部分魔灵者其父母或祖先有过异常现象(如有名的圣人祖先、疑似接触过异常魔法事物等)这或许是一种起源。

以下是部分4至6级重型魔灵逃犯的档案:

分布

该组织自公元987年成立以来,已与多个国家建立了友好合作关系,并在超过45个国家设立分支机构。按其地理分布可分为四大总局:东岸总局(总部设于温时市)、璃海总局(总部设于星北市)、仙灵里加总局(总部设于灼华红星)及长京总局(总部设于长京)。

异常事物

除抓捕任务外,监测局的另一大职责是探寻和监测各类异常事物,局内简称为“AT(Abnormal Things)”。

在局内,AT按数字分为1到10十个等级,等级越高,危害越大。按分类,AT可分为“物品”“生物”“空间(如一座山、一个房间等)”和“不可名状”四类。

物品类AT在外观上通常是各类常见物品,如椅子、菜刀、手机等,少部分呈岩石状,或为各种物品粗暴融合交织的形态。从性质上看,这类AT会因等级高低出现不规律抖动、颤动和发出声响,有时还会对外释放辐射并发出光照。
此外,这类AT本身具备各种异常特性,比如突然移动、瞬移、穿透物品,以及不规律的发热与制冷等。
总体而言,这一类AT没有太过特殊的性质,也不具备研究价值,因此在大多数情况下,会由探员捕获并在后续进行销毁。

生物类AT通常呈现出正常外表的各类动物、昆虫等形态,偶尔也会出现人形AT。研究显示,这类AT不具备智慧,仅进行基础的生物本能活动。

这类生物虽外表平常,却具备异常性质,其异常主要体现在特殊的魔法能力上,而非无规律的物理现象。

值得注意的是,生物类AT大多极具攻击性。因此探员在执行任务时,基本会选择就地消灭,并在事后清除残骸。

空间型AT主要以房间内的封闭空间和野外环境下的开放空间为主,其空间体积在大多数情况下可通过测量外围长宽高计算得出。这类空间AT通常仅表现出较弱的异常现象,原则上采取特殊销毁处理。

但存在部分空间AT呈现完全异常状态:以房间型异常空间为例,其内部实际容积远超外部测量数据,且伴随环境异变(包括温度/湿度异常、时间流速改变等),部分空间内甚至存在生物型AT或物品型AT。此类异常空间的时空结构极不稳定,出口位置具有不确定性,有时进入后甚至无法主动离开,只能被动等待时空异常出现。

值得注意的是,这类异常AT间存在潜在关联性。探员可通过非常规手段(如持续性撞墙、开启异常门窗、接触违和环境物品等)实现空间跃迁——既可脱离当前AT,也可能进入其他异常空间。(有探员声称自己通过撞墙的方式进入到了一个未知的黄色空间
监测局现行处置方案为:常规空间AT上报后执行销毁程序;对具备研究价值、规模过大或包含特殊样本的空间AT,则采取保护性封锁并建立三级警戒。相关空间网络机制与跃迁原理仍在门扉研究组持续攻关中。

不可名状类的at是所有at中最为神秘且投入经费最少的项目,这一类的at通常以一种无法感知的状态存在但同时又确确实实的影响现实中的各种事物。

模拟盒子

模拟盒子是由监测局与社科中央科技大学联合研发的科研装置,其融合了物品类AT与空间类AT技术成果,核心结构为特制盒体。当实验对象通过盒内集成摄像头完成全身扫描后,装置将在正前方1.5米处生成一个长宽约两米的异常空间,并在其中创造出实验对象的1:1复制体。

复制体特性:
- 生理结构与原体高度一致(包括身体机能、内部构造及肌肉密度)
- 仅保留基础生理反射功能
- 智力水平处于本能反应层级

在功能使用方面模拟盒子主要被用来测试魔灵者能力、使用极限研究以及高危能作用机制分析和替代性医学解剖实验。

需要注意的是复制体会在创建后的72小时后自动死亡并消失,随后空间也会自动关闭空间内其他人员也会强制传送出原世界。

以下为0045号干员的研究记录:

经费

魔法监测局的经费来源主要由其他国家拨款经费以及社会捐赠为主,在经费使用上大部分财政支出被用在了员工工资与研究投资和处理善后等。

总专员

该组织的实际最高领导层为总专员,总专员们通常由各国政府指定代表任命,监测局内共有6位总专员,其分别由4位其他地区总局长和2位经选举的副局长共同担任,在职责上总专员们会定期召开会议来决定局内的重大事务,来决定组织的下一步行动和发展。

历史

魔灵者的数值表

力量等级与破坏力对照表

  • | 等级 | 力量单位(或TNT当量) | 破坏力描述:
  • | 1 | 1,500 N | 击碎砖墙、折断大树,可破坏小型车辆 |
  • | 2 | 3,000 N | 击穿汽车钢板,破坏混凝土块(如小型地基) |
  • | 3 | 0.01吨TNT | 一拳打穿普通楼房的混凝土墙壁(厚度20cm) |
  • | 4 | 0.1吨TNT | 击穿钢筋混凝土结构(如桥梁支柱),击倒小型平房 |
  • | 5 | 0.5吨TNT | 摧毁大型仓库或轻型钢结构建筑 |
  • | 6 | 2吨TNT | 轻松拆毁一栋高5层的混凝土结构房屋(冲击波覆盖半径50米) |
  • | 7 | 10吨TNT | 夷平工厂或大型商场(相当于中型导弹爆炸) |
  • | 8 | 50吨TNT | 摧毁数个街区(如住宅区),破坏中型桥梁 |
  • | 9 | 250吨TNT | 击垮大型体育场馆或工业设施(能量接近战术核武器) |
  • | 10| 1,250吨TNT 彻底摧毁华尔街级别街道(楼房化为废墟,破坏范围超2公里虽然这里并没有华尔街)

—-



« Organization-12 | Organization-13 | organization-14 »

除非特别注明,本页内容采用以下授权方式: Creative Commons Attribution-ShareAlike 3.0 License