Narihira RELAX ver. 0.01 (c) Kenta Cho(ABA."Saba") ABA Games
<?xml version="1.0"?>
<!DOCTYPE module SYSTEM "relaxCore.dtd">

<!--
  narihira.rlx

  Copyright 2002 Kenta Cho. All rights reserved. 
-->

<module 
 moduleVersion="0.03"
 relaxCoreVersion="1.0"
 targetNamespace="http://www.asahi-net.or.jp/~cs8k-cyu/bulletml/narihira"
 xmlns="http://www.xml.gr.jp/xmlns/relaxCore">

<interface>
 <export label="narihira"/>
</interface>


<elementRule role="narihira">
 <sequence>
  <ref label="scroll" occurs="?"/>
  <ref label="obstacle" occurs="?"/>
  <ref label="battery" occurs="?"/>
 </sequence>
</elementRule>

<elementRule role="scroll">
 <sequence>
  <ref label="position" occurs="?"/>
  <ref label="roll" occurs="?"/>
 </sequence>
</elementRule>

<elementRule role="position">
 <sequence occurs="*">
  <ref label="p"/>
 </sequence>
</elementRule>

<elementRule role="p" type="string"/>

<elementRule role="roll">
 <sequence occurs="*">
  <ref label="r"/>
 </sequence>
</elementRule>

<elementRule role="obstacle">
 <sequence occurs="*">
  <ref label="o"/>
 </sequence>
</elementRule>

<elementRule role="battery">
 <sequence occurs="*">
  <ref label="b"/>
 </sequence>
</elementRule>

<elementRule role="r" type="string"/>
<elementRule role="o" type="string"/>
<elementRule role="b" type="string"/>


<tag name="narihira">
 <attribute name="xmlns" type="string"/>
</tag>

<tag name="scroll"/>
<tag name="obstacle"/>
<tag name="battery"/>

<tag name="position"/>
<tag name="roll"/>

<tag name="p">
 <attribute name="x" required="true" type="string"/>
 <attribute name="y" required="true" type="string"/>
 <attribute name="t" required="true" type="string"/>
</tag>

<tag name="r">
 <attribute name="d" required="true" type="string"/>
 <attribute name="t" required="true" type="string"/>
</tag>

<tag name="o">
 <attribute name="x" required="true" type="string"/>
 <attribute name="y" required="true" type="string"/>
 <attribute name="w" required="true" type="string"/>
 <attribute name="h" required="true" type="string"/>
 <attribute name="scroll" type="string"/>
</tag>

<tag name="b">
 <attribute name="x" required="true" type="string"/>
 <attribute name="y" required="true" type="string"/>
 <attribute name="d" type="string"/>
 <attribute name="t" type="string"/>
 <attribute name="name" required="true" type="string"/>
 <attribute name="color" type="string"/>
 <attribute name="rank" type="string"/>
 <attribute name="laser" type="string"/>
 <attribute name="scroll" type="string"/>
 <attribute name="width" type="string"/>
</tag>

</module>
-