Chilin Grimm Cup 规则书中文版

常用链接

Chilin Grimm Cup 分组 & 注册 注册比赛(不是challonge的用户名,那个随意)时,请使用参赛的游戏id进行注册。

赛制

小组赛

Round Robin BO1*1, means each player will only have one match with others. each match only content one game.
分组?
about 6.25% player will go into final stage.but the number of final stage player must can be divided by 4.(一定能被4整除)
using “Map Perfer’s List” system to determined maps played.See “Q&A” to know more information.

Final Stage

Map Pool

The Follwing mappool will used in all tournament process.(both all group stage games and all final stage)

Cricital Rules

  • no sub-account allowed. once administrator noticed that

BannedList

in order to keep tournament minimize delays , the following player will banned from this tournament:

  • Blick Winkel
  • NGC6240

banned player use other id to join this tournament will see as use sub-account join this tournament.

Q&A

What is “Player Select Ranking”? Why to set that?

下面是草稿:
ELO不是评价选手强弱的唯一标准,尤其是有些选手很少打天梯,或者很久没有打过天梯,分数可能不真实
现在的Tournament不够多,时间差距过大,平均名次无法证明实力。
避免开小号,参与的选手清楚哪些成员是小号。

What is “Map Perfer’s List”? Why to set that?

下面是草稿:
我们坚信选手不是全能的,地图种类很多,有很多擅长与不擅长的是很正常的。
扬长避短也是一种能力

Chilin Grimm Cup Rule Books English Version

Chilin Grimm Cup brackets & register use your id to register.

Format

Group Stage

Round Robin BO1*1, means each player will only have one match with others. each match only content one game.
分组?
about 6.25% player will go into final stage.but the number of final stage player must can be divided by 4.(一定能被4整除)
using “Map Perfer’s List” system to determined maps played.See “Q&A” to know more information.

Final Stage

Map Pool

The Follwing mappool will used in all tournament process.(both all group stage games and all final stage)

Cricital Rules

  • no sub-account allowed. once administrator noticed that

BannedList

in order to keep tournament minimize delays , the following player will banned from this tournament:

  • Blick Winkel
  • NGC6240

banned player use other id to join this tournament will see as use sub-account join this tournament.

Q&A

What is “Player Select Ranking”? Why to set that?

下面是草稿:
ELO不是评价选手强弱的唯一标准,尤其是有些选手很少打天梯,或者很久没有打过天梯,分数可能不真实
现在的Tournament不够多,时间差距过大,平均名次无法证明实力。
避免开小号,参与的选手清楚哪些成员是小号。

What is “Map Perfer’s List”? Why to set that?

下面是草稿:
我们坚信选手不是全能的,地图种类很多,有很多擅长与不擅长的是很正常的。
扬长避短也是一种能力

pictest

Case1

部署

hexo工程项目中拥有一个source文件夹,在该文件夹下新建images文件夹,之后在里面存入testpic.png文件。
之后,在需要引用该图片的markdown文件中插入以下内容来插入图片

1
![测试图片](/images/testpic.png "插入的测试图片")

之后按照正常流程部署即可

效果

测试图片

Case2

部署

可以发现,上文中图片路径的,是相对于对应文章的md文件的路径。那么不放在source/images文件夹中是否可以?
在本Case中,将进行如下测试:

  • 与该文章对应的md文件相同文件夹下存储testpic_sameroot.png文件
  • 在source根目录下存储testpic_uproot.png文件
  • 新建另一个文件夹another_images,并在其中存储testpic_another.png文件
    之后将以如下代码进行引用
1
2
3
![测试图片_相同目录](testpic_sameroot.png "相同目录的测试图片")  
![测试图片_父文件夹](/testpic_uproot.png "父文件夹的测试图片")
![测试图片_同层异名](/another_images/testpic_another.png "同层异名的测试图片")

效果

测试图片_相同目录
测试图片_父文件夹
测试图片_同层异名

结论

放在_post中的文件无法正常解析,不过在source文件夹下,任意相同路径的资源均可以被解析。
其实除了图片,还可以放置zip压缩包等等内容,不用再费心去找网盘或图床辣(

参考

hexo文档中关于资源文件夹的说明