58 lines
2.8 KiB
XML
58 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- Betting System
|
|
BettingRule: Defines betting rules and information about betting items
|
|
- ruleType:
|
|
default: Distributes the total betting amount evenly among the winning team according to the ratio (betting can only be placed on one team).
|
|
|
|
- additionalBetting: Allows additional betting or not.
|
|
|
|
- BettingItem: Common information about the items used for betting
|
|
type = (gold, item),
|
|
minValue="minimum betting amount",
|
|
maxValue="maximum betting amount",
|
|
unitValue="betting unit"
|
|
|
|
- TeamInfo: The number of teams available to place bets on.
|
|
|
|
AdditionalReward: Additional rewards given when betting
|
|
Related node <AdditionalReward type="item" itemTemplateId="item ID" amount="number of items to give" />
|
|
|
|
Ready: Actions to control during the preparation stage of the arena (from xx minutes before the match starts to the match start time).
|
|
-->
|
|
|
|
|
|
<BettingData>
|
|
|
|
<!-- 일반전 베팅 (황금 - 황금) -->
|
|
<Betting id="1" titleText="@betting: 190001" subText="@betting: 190002" inputEnable="true" voteEnable="true">
|
|
<BettingRule ruleType="default" additionalBetting="false" teamCount="2" tex="0">
|
|
<BettingItem type="item" minValue="50" maxValue="3000" unitValue="50" itemTemplateId="71468" />
|
|
</BettingRule>
|
|
<AdditionalReward type="item" itemTemplateId="80086" amount="1" />
|
|
</Betting>
|
|
|
|
<!-- 대박전 베팅1 (다이아 - 다이아) -->
|
|
<Betting id="2" titleText="@betting: 190001" subText="@betting: 190002" inputEnable="true" voteEnable="true">
|
|
<BettingRule ruleType="default" additionalBetting="false" teamCount="2" tex="0">
|
|
<BettingItem type="item" minValue="50" maxValue="1000" unitValue="50" itemTemplateId="71471" />
|
|
</BettingRule>
|
|
<AdditionalReward type="item" itemTemplateId="80086" amount="1" />
|
|
</Betting>
|
|
<!-- 대박전 베팅2 (다이아 - 다이아) -->
|
|
<Betting id="3" titleText="@betting: 190001" subText="@betting: 190002" inputEnable="true" voteEnable="true">
|
|
<BettingRule ruleType="default" additionalBetting="false" teamCount="2" tex="0">
|
|
<BettingItem type="item" minValue="50" maxValue="1000" unitValue="50" itemTemplateId="71471" />
|
|
</BettingRule>
|
|
<AdditionalReward type="item" itemTemplateId="80086" amount="1" />
|
|
</Betting>
|
|
|
|
|
|
<!-- 라이브 대응 시 베팅 (황금 - 가챠)
|
|
<Betting id="1" titleText="@betting: 190001" subText="@betting: 190002" inputEnable="true" voteEnable="true">
|
|
<BettingRule ruleType="default" additionalBetting="false" teamCount="2" tex="100">
|
|
<BettingItem type="item" minValue="1" maxValue="1" unitValue="1" itemTemplateId="71468" rewardItemTemplateId="80086"/>
|
|
</BettingRule>
|
|
</Betting> -->
|
|
</BettingData>
|