Skip to content

Instantly share code, notes, and snippets.

@kou-yeung
Created December 6, 2017 16:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kou-yeung/57d2dea20441456d97943dd73c0bfa02 to your computer and use it in GitHub Desktop.
Save kou-yeung/57d2dea20441456d97943dd73c0bfa02 to your computer and use it in GitHub Desktop.
<!--
アイテムの命名規則
ITEM_AAAABB
AAAA : 数字 4 桁
BB : 数字 2 桁
-->
<Pattern match="ITEM_([0-9]{4})([0-9]{2}$)">
<!-- AAAA : アイテム効果 -->
<Group index="1" equal="1000">HP回復</Group>
<Group index="1" equal="1001">MP回復</Group>
<!-- BB : レアリティ -->
<Group index="2" equal="01">(小)</Group>
<Group index="2" equal="02">(中)</Group>
<Group index="2" equal="03">(大)</Group>
</Pattern>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment