Proper implementation of ToI event items.

Contributed by Iris.
This commit is contained in:
MobiusDevelopment 2022-02-01 07:22:30 +00:00
parent a15695b7fa
commit c9fbbfd256
18 changed files with 522 additions and 162 deletions

View File

@ -837,6 +837,7 @@
<set name="default_action" val="SKILL_REDUCE_ON_SKILL_SUCCESS" />
<set name="material" val="PAPER" />
<set name="is_dropable" val="false" />
<set name="is_depositable" val="true" />
<set name="is_sellable" val="false" />
<set name="is_stackable" val="true" />
<set name="handler" val="ItemSkills" />
@ -935,20 +936,16 @@
<item id="49766" name="Unidentified Stone" type="EtcItem">
<!-- Double-click to get one of the following items: Celestial Shard or Broken Celestial Shard. -->
<set name="icon" val="icon.etc_magical_stone_i00" />
<set name="default_action" val="PEEL" />
<set name="material" val="PAPER" />
<set name="default_action" val="CAPSULE" />
<set name="immediate_effect" val="true" />
<set name="material" val="PAPER" />
<set name="is_tradable" val="true" />
<set name="is_dropable" val="true" />
<set name="is_sellable" val="true" />
<set name="material" val="LIQUID" />
<set name="is_stackable" val="true" />
<set name="handler" val="ExtractableItems" />
<set name="extractableCountMin" val="1" />
<set name="extractableCountMax" val="1" />
<capsuled_items>
<item id="49759" min="1" max="1" chance="50" /> <!-- Celestial Shard -->
<item id="49767" min="1" max="1" chance="50" /> <!-- Celestial Broken Shard -->
</capsuled_items>
<set name="handler" val="ItemSkills" />
<set name="commissionItemType" val="OTHER_ITEM" />
<skills>
<skill id="39157" level="1" /> <!-- Unidentified Rock -->
</skills>
</item>
<item id="49767" name="Broken Celestial Shard" type="EtcItem">
<!-- Broken Celestial Shard. Take it to the Dimensional Vortex at the 1st floor of the Tower of Insolence. -->
@ -961,10 +958,16 @@
<!-- Activates Resistance to Paralysis / Mental Attacks for 20 minutes. -->
<set name="icon" val="icon.scroll_of_verification_i08" />
<set name="default_action" val="SKILL_REDUCE" />
<set name="etcitem_type" val="SCROLL" />
<set name="material" val="PAPER" />
<set name="weight" val="30" />
<set name="is_sellable" val="false" />
<set name="is_stackable" val="true" />
<set name="handler" val="ItemSkills" />
<set name="commissionItemType" val="OTHER_ITEM" />
<skills>
<skill id="39156" level="1" /> <!-- Scroll of Heavenly Protection -->
</skills>
</item>
<item id="49769" name="Improved Scroll Box: Emperor Baium's Enchant" type="EtcItem">
<!-- Double-click to get one of the following scrolls: Solid Scroll: Enchant Weapon (C)/(B), Improved Scroll: Enchant Weapon (C)/(B), or Normal Scroll: Enchant Weapon (C)/(B). Cannot be sold in the grocery store. -->

View File

@ -1019,16 +1019,53 @@
<skill id="39156" toLevel="1" name="Scroll of Heavenly Protection">
<!-- For 20 minutes, increases Paralysis Resistance by 15, Mental Attack Resistance by 10. -->
<icon>icon.scroll_of_verification_i08</icon>
<operateType>A1</operateType>
<isMagic>4</isMagic>
<reuseDelay>10000</reuseDelay>
<effectPoint>1</effectPoint>
<abnormalLevel>1</abnormalLevel>
<abnormalTime>1200</abnormalTime>
<abnormalType>POTION_OF_GENESIS</abnormalType>
<isMagic>4</isMagic> <!-- Item Skill -->
<magicLevel>1</magicLevel>
<itemConsumeCount>1</itemConsumeCount>
<itemConsumeId>49768</itemConsumeId>
<operateType>A2</operateType>
<basicProperty>NONE</basicProperty>
<magicCriticalRate>5</magicCriticalRate>
<hitCancelTime>0</hitCancelTime>
<targetType>SELF</targetType>
<affectScope>SINGLE</affectScope>
<effects>
<effect name="DefenceTrait">
<PARALYZE>15</PARALYZE>
<DERANGEMENT>10</DERANGEMENT>
</effect>
</effects>
</skill>
<skill id="39157" toLevel="1" name="Unidentified Rock">
<icon>icon.etc_magical_stone_i00</icon>
<isMagic>2</isMagic> <!-- Static Skill -->
<magicLevel>1</magicLevel>
<operateType>A1</operateType>
<hitTime>500</hitTime>
<coolTime>500</coolTime>
<magicCriticalRate>5</magicCriticalRate>
<hitCancelTime>0</hitCancelTime>
<targetType>SELF</targetType>
<affectScope>SINGLE</affectScope>
<conditions>
<condition name="OpEncumbered">
<weightPercent>10</weightPercent>
<slotsPercent>10</slotsPercent>
</condition>
</conditions>
<effects>
<effect name="RestorationRandom">
<items>
<item chance="90">
<item id="49767" count="1" />
</item>
<item chance="10">
<item id="49759" count="1" />
</item>
</items>
</effect>
</effects>
</skill>
<skill id="39158" toLevel="1" name="Secret Scroll Box: Emperor Baium's Enchant">
<icon>icon.npoint_valakas_30day_box</icon>

View File

@ -843,6 +843,7 @@
<set name="material" val="PAPER" />
<set name="is_tradable" val="false" />
<set name="is_dropable" val="false" />
<set name="is_depositable" val="true" />
<set name="is_sellable" val="false" />
<set name="is_stackable" val="true" />
</item>
@ -903,20 +904,16 @@
<item id="49766" name="Unidentified Stone" type="EtcItem">
<!-- Double-click to get one of the following items: Celestial Shard or Broken Celestial Shard. -->
<set name="icon" val="icon.etc_magical_stone_i00" />
<set name="default_action" val="PEEL" />
<set name="material" val="PAPER" />
<set name="default_action" val="CAPSULE" />
<set name="immediate_effect" val="true" />
<set name="material" val="PAPER" />
<set name="is_tradable" val="true" />
<set name="is_dropable" val="true" />
<set name="is_sellable" val="true" />
<set name="material" val="LIQUID" />
<set name="is_stackable" val="true" />
<set name="handler" val="ExtractableItems" />
<set name="extractableCountMin" val="1" />
<set name="extractableCountMax" val="1" />
<capsuled_items>
<item id="49759" min="1" max="1" chance="50" /> <!-- Celestial Shard -->
<item id="49767" min="1" max="1" chance="50" /> <!-- Celestial Broken Shard -->
</capsuled_items>
<set name="handler" val="ItemSkills" />
<set name="commissionItemType" val="OTHER_ITEM" />
<skills>
<skill id="39157" level="1" /> <!-- Unidentified Rock -->
</skills>
</item>
<item id="49767" name="Broken Celestial Shard" type="EtcItem">
<!-- Broken Celestial Shard. Take it to the Dimensional Vortex at the 1st floor of the Tower of Insolence. -->
@ -929,10 +926,16 @@
<!-- Activates Resistance to Paralysis / Mental Attacks for 20 minutes. -->
<set name="icon" val="icon.scroll_of_verification_i08" />
<set name="default_action" val="SKILL_REDUCE" />
<set name="etcitem_type" val="SCROLL" />
<set name="material" val="PAPER" />
<set name="weight" val="30" />
<set name="is_sellable" val="false" />
<set name="is_stackable" val="true" />
<set name="handler" val="ItemSkills" />
<set name="commissionItemType" val="OTHER_ITEM" />
<skills>
<skill id="39156" level="1" /> <!-- Scroll of Heavenly Protection -->
</skills>
</item>
<item id="49769" name="Improved Scroll Box: Emperor Baium's Enchant" type="EtcItem">
<!-- Double-click to get one of the following scrolls: Solid Scroll: Enchant Weapon (C)/(B), Improved Scroll: Enchant Weapon (C)/(B), or Normal Scroll: Enchant Weapon (C)/(B). Cannot be sold in the grocery store. -->

View File

@ -1019,16 +1019,53 @@
<skill id="39156" toLevel="1" name="Scroll of Heavenly Protection">
<!-- For 20 minutes, increases Paralysis Resistance by 15, Mental Attack Resistance by 10. -->
<icon>icon.scroll_of_verification_i08</icon>
<operateType>A1</operateType>
<isMagic>4</isMagic>
<reuseDelay>10000</reuseDelay>
<effectPoint>1</effectPoint>
<abnormalLevel>1</abnormalLevel>
<abnormalTime>1200</abnormalTime>
<abnormalType>POTION_OF_GENESIS</abnormalType>
<isMagic>4</isMagic> <!-- Item Skill -->
<magicLevel>1</magicLevel>
<itemConsumeCount>1</itemConsumeCount>
<itemConsumeId>49768</itemConsumeId>
<operateType>A2</operateType>
<basicProperty>NONE</basicProperty>
<magicCriticalRate>5</magicCriticalRate>
<hitCancelTime>0</hitCancelTime>
<targetType>SELF</targetType>
<affectScope>SINGLE</affectScope>
<effects>
<effect name="DefenceTrait">
<PARALYZE>15</PARALYZE>
<DERANGEMENT>10</DERANGEMENT>
</effect>
</effects>
</skill>
<skill id="39157" toLevel="1" name="Unidentified Rock">
<icon>icon.etc_magical_stone_i00</icon>
<isMagic>2</isMagic> <!-- Static Skill -->
<magicLevel>1</magicLevel>
<operateType>A1</operateType>
<hitTime>500</hitTime>
<coolTime>500</coolTime>
<magicCriticalRate>5</magicCriticalRate>
<hitCancelTime>0</hitCancelTime>
<targetType>SELF</targetType>
<affectScope>SINGLE</affectScope>
<conditions>
<condition name="OpEncumbered">
<weightPercent>10</weightPercent>
<slotsPercent>10</slotsPercent>
</condition>
</conditions>
<effects>
<effect name="RestorationRandom">
<items>
<item chance="90">
<item id="49767" count="1" />
</item>
<item chance="10">
<item id="49759" count="1" />
</item>
</items>
</effect>
</effects>
</skill>
<skill id="39158" toLevel="1" name="Secret Scroll Box: Emperor Baium's Enchant">
<icon>icon.npoint_valakas_30day_box</icon>

View File

@ -846,6 +846,7 @@
<set name="material" val="PAPER" />
<set name="is_tradable" val="false" />
<set name="is_dropable" val="false" />
<set name="is_depositable" val="true" />
<set name="is_sellable" val="false" />
<set name="is_stackable" val="true" />
</item>
@ -906,20 +907,16 @@
<item id="49766" name="Unidentified Stone" type="EtcItem">
<!-- Double-click to get one of the following items: Celestial Shard or Broken Celestial Shard. -->
<set name="icon" val="icon.etc_magical_stone_i00" />
<set name="default_action" val="PEEL" />
<set name="material" val="PAPER" />
<set name="default_action" val="CAPSULE" />
<set name="immediate_effect" val="true" />
<set name="material" val="PAPER" />
<set name="is_tradable" val="true" />
<set name="is_dropable" val="true" />
<set name="is_sellable" val="true" />
<set name="material" val="LIQUID" />
<set name="is_stackable" val="true" />
<set name="handler" val="ExtractableItems" />
<set name="extractableCountMin" val="1" />
<set name="extractableCountMax" val="1" />
<capsuled_items>
<item id="49759" min="1" max="1" chance="50" /> <!-- Celestial Shard -->
<item id="49767" min="1" max="1" chance="50" /> <!-- Celestial Broken Shard -->
</capsuled_items>
<set name="handler" val="ItemSkills" />
<set name="commissionItemType" val="OTHER_ITEM" />
<skills>
<skill id="39157" level="1" /> <!-- Unidentified Rock -->
</skills>
</item>
<item id="49767" name="Broken Celestial Shard" type="EtcItem">
<!-- Broken Celestial Shard. Take it to the Dimensional Vortex at the 1st floor of the Tower of Insolence. -->
@ -932,10 +929,16 @@
<!-- Activates Resistance to Paralysis/ Mental Attacks for 20 minutes. -->
<set name="icon" val="icon.scroll_of_verification_i08" />
<set name="default_action" val="SKILL_REDUCE" />
<set name="etcitem_type" val="SCROLL" />
<set name="material" val="PAPER" />
<set name="weight" val="30" />
<set name="is_sellable" val="false" />
<set name="is_stackable" val="true" />
<set name="handler" val="ItemSkills" />
<set name="commissionItemType" val="OTHER_ITEM" />
<skills>
<skill id="39156" level="1" /> <!-- Scroll of Heavenly Protection -->
</skills>
</item>
<item id="49769" name="Improved Scroll Box: Emperor Baium's Enchant" type="EtcItem">
<!-- Double-click to get one of the following scrolls: Solid Scroll: Enchant Weapon (C)/(B), Improved Scroll: Enchant Weapon (C)/(B), or Normal Scroll: Enchant Weapon (C)/(B). Cannot be sold in the grocery store. -->

View File

@ -1019,16 +1019,53 @@
<skill id="39156" toLevel="1" name="Scroll of Heavenly Protection">
<!-- For 20 minutes, increases Paralysis Resistance by 15, Mental Attack Resistance by 10. -->
<icon>icon.scroll_of_verification_i08</icon>
<operateType>A1</operateType>
<isMagic>4</isMagic>
<reuseDelay>10000</reuseDelay>
<effectPoint>1</effectPoint>
<abnormalLevel>1</abnormalLevel>
<abnormalTime>1200</abnormalTime>
<abnormalType>POTION_OF_GENESIS</abnormalType>
<isMagic>4</isMagic> <!-- Item Skill -->
<magicLevel>1</magicLevel>
<itemConsumeCount>1</itemConsumeCount>
<itemConsumeId>49768</itemConsumeId>
<operateType>A2</operateType>
<basicProperty>NONE</basicProperty>
<magicCriticalRate>5</magicCriticalRate>
<hitCancelTime>0</hitCancelTime>
<targetType>SELF</targetType>
<affectScope>SINGLE</affectScope>
<effects>
<effect name="DefenceTrait">
<PARALYZE>15</PARALYZE>
<DERANGEMENT>10</DERANGEMENT>
</effect>
</effects>
</skill>
<skill id="39157" toLevel="1" name="Unidentified Rock">
<icon>icon.etc_magical_stone_i00</icon>
<isMagic>2</isMagic> <!-- Static Skill -->
<magicLevel>1</magicLevel>
<operateType>A1</operateType>
<hitTime>500</hitTime>
<coolTime>500</coolTime>
<magicCriticalRate>5</magicCriticalRate>
<hitCancelTime>0</hitCancelTime>
<targetType>SELF</targetType>
<affectScope>SINGLE</affectScope>
<conditions>
<condition name="OpEncumbered">
<weightPercent>10</weightPercent>
<slotsPercent>10</slotsPercent>
</condition>
</conditions>
<effects>
<effect name="RestorationRandom">
<items>
<item chance="90">
<item id="49767" count="1" />
</item>
<item chance="10">
<item id="49759" count="1" />
</item>
</items>
</effect>
</effects>
</skill>
<skill id="39158" toLevel="1" name="Secret Scroll Box: Emperor Baium's Enchant">
<icon>icon.npoint_valakas_30day_box</icon>

View File

@ -844,6 +844,7 @@
<set name="material" val="PAPER" />
<set name="is_tradable" val="false" />
<set name="is_dropable" val="false" />
<set name="is_depositable" val="true" />
<set name="is_sellable" val="false" />
<set name="is_stackable" val="true" />
</item>
@ -904,20 +905,16 @@
<item id="49766" name="Unidentified Stone" type="EtcItem">
<!-- Double-click to obtain one of the following items: Celestial Shard or Broken Celestial Shard. -->
<set name="icon" val="icon.etc_magical_stone_i00" />
<set name="default_action" val="PEEL" />
<set name="material" val="PAPER" />
<set name="default_action" val="CAPSULE" />
<set name="immediate_effect" val="true" />
<set name="material" val="PAPER" />
<set name="is_tradable" val="true" />
<set name="is_dropable" val="true" />
<set name="is_sellable" val="true" />
<set name="material" val="LIQUID" />
<set name="is_stackable" val="true" />
<set name="handler" val="ExtractableItems" />
<set name="extractableCountMin" val="1" />
<set name="extractableCountMax" val="1" />
<capsuled_items>
<item id="49759" min="1" max="1" chance="50" /> <!-- Celestial Shard -->
<item id="49767" min="1" max="1" chance="50" /> <!-- Celestial Broken Shard -->
</capsuled_items>
<set name="handler" val="ItemSkills" />
<set name="commissionItemType" val="OTHER_ITEM" />
<skills>
<skill id="39157" level="1" /> <!-- Unidentified Rock -->
</skills>
</item>
<item id="49767" name="Broken Celestial Shard" type="EtcItem">
<!-- Broken Celestial Shard. Take it to the Dimensional Vortex at the 1st floor of the Tower of Insolence. -->
@ -930,10 +927,16 @@
<!-- Activates Resistance to Paralysis/ Mental Attacks for 20 minutes. -->
<set name="icon" val="icon.scroll_of_verification_i08" />
<set name="default_action" val="SKILL_REDUCE" />
<set name="etcitem_type" val="SCROLL" />
<set name="material" val="PAPER" />
<set name="weight" val="30" />
<set name="is_sellable" val="false" />
<set name="is_stackable" val="true" />
<set name="handler" val="ItemSkills" />
<set name="commissionItemType" val="OTHER_ITEM" />
<skills>
<skill id="39156" level="1" /> <!-- Scroll of Heavenly Protection -->
</skills>
</item>
<item id="49769" name="Improved Scroll Box: Emperor Baium's Enchant" type="EtcItem">
<!-- Double-click to obtain one of the following scrolls: Solid Scroll: Enchant Weapon (C)/(B), Improved Scroll: Enchant Weapon (C)/(B), or Normal Scroll: Enchant Weapon (C)/(B). Cannot be sold in the grocery store. -->

View File

@ -1019,16 +1019,53 @@
<skill id="39156" toLevel="1" name="Scroll of Heavenly Protection">
<!-- For 20 min., Paralysis Resistance +15, Mental Attack Resistance +10. -->
<icon>icon.scroll_of_verification_i08</icon>
<operateType>A1</operateType>
<isMagic>4</isMagic>
<reuseDelay>10000</reuseDelay>
<effectPoint>1</effectPoint>
<abnormalLevel>1</abnormalLevel>
<abnormalTime>1200</abnormalTime>
<abnormalType>POTION_OF_GENESIS</abnormalType>
<isMagic>4</isMagic> <!-- Item Skill -->
<magicLevel>1</magicLevel>
<itemConsumeCount>1</itemConsumeCount>
<itemConsumeId>49768</itemConsumeId>
<operateType>A2</operateType>
<basicProperty>NONE</basicProperty>
<magicCriticalRate>5</magicCriticalRate>
<hitCancelTime>0</hitCancelTime>
<targetType>SELF</targetType>
<affectScope>SINGLE</affectScope>
<effects>
<effect name="DefenceTrait">
<PARALYZE>15</PARALYZE>
<DERANGEMENT>10</DERANGEMENT>
</effect>
</effects>
</skill>
<skill id="39157" toLevel="1" name="Unidentified Rock">
<icon>icon.etc_magical_stone_i00</icon>
<isMagic>2</isMagic> <!-- Static Skill -->
<magicLevel>1</magicLevel>
<operateType>A1</operateType>
<hitTime>500</hitTime>
<coolTime>500</coolTime>
<magicCriticalRate>5</magicCriticalRate>
<hitCancelTime>0</hitCancelTime>
<targetType>SELF</targetType>
<affectScope>SINGLE</affectScope>
<conditions>
<condition name="OpEncumbered">
<weightPercent>10</weightPercent>
<slotsPercent>10</slotsPercent>
</condition>
</conditions>
<effects>
<effect name="RestorationRandom">
<items>
<item chance="90">
<item id="49767" count="1" />
</item>
<item chance="10">
<item id="49759" count="1" />
</item>
</items>
</effect>
</effects>
</skill>
<skill id="39158" toLevel="1" name="Secret Scroll Box: Emperor Baium's Enchant">
<icon>icon.npoint_valakas_30day_box</icon>

View File

@ -844,6 +844,7 @@
<set name="material" val="PAPER" />
<set name="is_tradable" val="false" />
<set name="is_dropable" val="false" />
<set name="is_depositable" val="true" />
<set name="is_sellable" val="false" />
<set name="is_stackable" val="true" />
</item>
@ -904,20 +905,16 @@
<item id="49766" name="Unidentified Stone" type="EtcItem">
<!-- Double-click to obtain one of the following items: Celestial Shard or Broken Celestial Shard. -->
<set name="icon" val="icon.etc_magical_stone_i00" />
<set name="default_action" val="PEEL" />
<set name="material" val="PAPER" />
<set name="default_action" val="CAPSULE" />
<set name="immediate_effect" val="true" />
<set name="material" val="PAPER" />
<set name="is_tradable" val="true" />
<set name="is_dropable" val="true" />
<set name="is_sellable" val="true" />
<set name="material" val="LIQUID" />
<set name="is_stackable" val="true" />
<set name="handler" val="ExtractableItems" />
<set name="extractableCountMin" val="1" />
<set name="extractableCountMax" val="1" />
<capsuled_items>
<item id="49759" min="1" max="1" chance="50" /> <!-- Celestial Shard -->
<item id="49767" min="1" max="1" chance="50" /> <!-- Celestial Broken Shard -->
</capsuled_items>
<set name="handler" val="ItemSkills" />
<set name="commissionItemType" val="OTHER_ITEM" />
<skills>
<skill id="39157" level="1" /> <!-- Unidentified Rock -->
</skills>
</item>
<item id="49767" name="Broken Celestial Shard" type="EtcItem">
<!-- Broken Celestial Shard. Take it to the Dimensional Vortex at the 1st floor of the Tower of Insolence. -->
@ -930,10 +927,16 @@
<!-- Activates Resistance to Paralysis/ Mental Attacks for 20 minutes. -->
<set name="icon" val="icon.scroll_of_verification_i08" />
<set name="default_action" val="SKILL_REDUCE" />
<set name="etcitem_type" val="SCROLL" />
<set name="material" val="PAPER" />
<set name="weight" val="30" />
<set name="is_sellable" val="false" />
<set name="is_stackable" val="true" />
<set name="handler" val="ItemSkills" />
<set name="commissionItemType" val="OTHER_ITEM" />
<skills>
<skill id="39156" level="1" /> <!-- Scroll of Heavenly Protection -->
</skills>
</item>
<item id="49769" name="Improved Scroll Box: Emperor Baium's Enchant" type="EtcItem">
<!-- Double-click to obtain one of the following scrolls: Solid Scroll: Enchant Weapon (C)/(B), Improved Scroll: Enchant Weapon (C)/(B), or Normal Scroll: Enchant Weapon (C)/(B). Cannot be sold in the grocery store. -->

View File

@ -1019,16 +1019,53 @@
<skill id="39156" toLevel="1" name="Scroll of Heavenly Protection">
<!-- For 20 min., Paralysis Resistance +15, Mental Attack Resistance +10. -->
<icon>icon.scroll_of_verification_i08</icon>
<operateType>A1</operateType>
<isMagic>4</isMagic>
<reuseDelay>10000</reuseDelay>
<effectPoint>1</effectPoint>
<abnormalLevel>1</abnormalLevel>
<abnormalTime>1200</abnormalTime>
<abnormalType>POTION_OF_GENESIS</abnormalType>
<isMagic>4</isMagic> <!-- Item Skill -->
<magicLevel>1</magicLevel>
<itemConsumeCount>1</itemConsumeCount>
<itemConsumeId>49768</itemConsumeId>
<operateType>A2</operateType>
<basicProperty>NONE</basicProperty>
<magicCriticalRate>5</magicCriticalRate>
<hitCancelTime>0</hitCancelTime>
<targetType>SELF</targetType>
<affectScope>SINGLE</affectScope>
<effects>
<effect name="DefenceTrait">
<PARALYZE>15</PARALYZE>
<DERANGEMENT>10</DERANGEMENT>
</effect>
</effects>
</skill>
<skill id="39157" toLevel="1" name="Unidentified Rock">
<icon>icon.etc_magical_stone_i00</icon>
<isMagic>2</isMagic> <!-- Static Skill -->
<magicLevel>1</magicLevel>
<operateType>A1</operateType>
<hitTime>500</hitTime>
<coolTime>500</coolTime>
<magicCriticalRate>5</magicCriticalRate>
<hitCancelTime>0</hitCancelTime>
<targetType>SELF</targetType>
<affectScope>SINGLE</affectScope>
<conditions>
<condition name="OpEncumbered">
<weightPercent>10</weightPercent>
<slotsPercent>10</slotsPercent>
</condition>
</conditions>
<effects>
<effect name="RestorationRandom">
<items>
<item chance="90">
<item id="49767" count="1" />
</item>
<item chance="10">
<item id="49759" count="1" />
</item>
</items>
</effect>
</effects>
</skill>
<skill id="39158" toLevel="1" name="Secret Scroll Box: Emperor Baium's Enchant">
<icon>icon.npoint_valakas_30day_box</icon>

View File

@ -847,6 +847,7 @@
<set name="material" val="PAPER" />
<set name="is_tradable" val="false" />
<set name="is_dropable" val="false" />
<set name="is_depositable" val="true" />
<set name="is_sellable" val="false" />
<set name="is_stackable" val="true" />
</item>
@ -907,20 +908,16 @@
<item id="49766" name="Unidentified Stone" type="EtcItem">
<!-- Double-click to obtain one of the following items: Celestial Shard or Broken Celestial Shard. -->
<set name="icon" val="icon.etc_magical_stone_i00" />
<set name="default_action" val="PEEL" />
<set name="material" val="PAPER" />
<set name="default_action" val="CAPSULE" />
<set name="immediate_effect" val="true" />
<set name="material" val="PAPER" />
<set name="is_tradable" val="true" />
<set name="is_dropable" val="true" />
<set name="is_sellable" val="true" />
<set name="material" val="LIQUID" />
<set name="is_stackable" val="true" />
<set name="handler" val="ExtractableItems" />
<set name="extractableCountMin" val="1" />
<set name="extractableCountMax" val="1" />
<capsuled_items>
<item id="49759" min="1" max="1" chance="50" /> <!-- Celestial Shard -->
<item id="49767" min="1" max="1" chance="50" /> <!-- Celestial Broken Shard -->
</capsuled_items>
<set name="handler" val="ItemSkills" />
<set name="commissionItemType" val="OTHER_ITEM" />
<skills>
<skill id="39157" level="1" /> <!-- Unidentified Rock -->
</skills>
</item>
<item id="49767" name="Broken Celestial Shard" type="EtcItem">
<!-- Broken Celestial Shard. Take it to the Dimensional Vortex at the 1st floor of the Tower of Insolence. -->
@ -933,10 +930,16 @@
<!-- Activates Resistance to Paralysis/ Mental Attacks for 20 minutes. -->
<set name="icon" val="icon.scroll_of_verification_i08" />
<set name="default_action" val="SKILL_REDUCE" />
<set name="etcitem_type" val="SCROLL" />
<set name="material" val="PAPER" />
<set name="weight" val="30" />
<set name="is_sellable" val="false" />
<set name="is_stackable" val="true" />
<set name="handler" val="ItemSkills" />
<set name="commissionItemType" val="OTHER_ITEM" />
<skills>
<skill id="39156" level="1" /> <!-- Scroll of Heavenly Protection -->
</skills>
</item>
<item id="49769" name="Improved Scroll Box: Emperor Baium's Enchant" type="EtcItem">
<!-- Double-click to obtain one of the following scrolls: Solid Scroll: Enchant Weapon (C)/(B), Improved Scroll: Enchant Weapon (C)/(B), or Normal Scroll: Enchant Weapon (C)/(B). Cannot be sold in the grocery store. -->

View File

@ -1019,16 +1019,53 @@
<skill id="39156" toLevel="1" name="Scroll of Heavenly Protection">
<!-- For 20 min., Paralysis Resistance +15, Mental Attack Resistance +10. -->
<icon>icon.scroll_of_verification_i08</icon>
<operateType>A1</operateType>
<isMagic>4</isMagic>
<reuseDelay>10000</reuseDelay>
<effectPoint>1</effectPoint>
<abnormalLevel>1</abnormalLevel>
<abnormalTime>1200</abnormalTime>
<abnormalType>POTION_OF_GENESIS</abnormalType>
<isMagic>4</isMagic> <!-- Item Skill -->
<magicLevel>1</magicLevel>
<itemConsumeCount>1</itemConsumeCount>
<itemConsumeId>49768</itemConsumeId>
<operateType>A2</operateType>
<basicProperty>NONE</basicProperty>
<magicCriticalRate>5</magicCriticalRate>
<hitCancelTime>0</hitCancelTime>
<targetType>SELF</targetType>
<affectScope>SINGLE</affectScope>
<effects>
<effect name="DefenceTrait">
<PARALYZE>15</PARALYZE>
<DERANGEMENT>10</DERANGEMENT>
</effect>
</effects>
</skill>
<skill id="39157" toLevel="1" name="Unidentified Rock">
<icon>icon.etc_magical_stone_i00</icon>
<isMagic>2</isMagic> <!-- Static Skill -->
<magicLevel>1</magicLevel>
<operateType>A1</operateType>
<hitTime>500</hitTime>
<coolTime>500</coolTime>
<magicCriticalRate>5</magicCriticalRate>
<hitCancelTime>0</hitCancelTime>
<targetType>SELF</targetType>
<affectScope>SINGLE</affectScope>
<conditions>
<condition name="OpEncumbered">
<weightPercent>10</weightPercent>
<slotsPercent>10</slotsPercent>
</condition>
</conditions>
<effects>
<effect name="RestorationRandom">
<items>
<item chance="90">
<item id="49767" count="1" />
</item>
<item chance="10">
<item id="49759" count="1" />
</item>
</items>
</effect>
</effects>
</skill>
<skill id="39158" toLevel="1" name="Secret Scroll Box: Emperor Baium's Enchant">
<icon>icon.npoint_valakas_30day_box</icon>

View File

@ -880,6 +880,7 @@
<set name="material" val="PAPER" />
<set name="is_tradable" val="false" />
<set name="is_dropable" val="false" />
<set name="is_depositable" val="true" />
<set name="is_sellable" val="false" />
<set name="is_stackable" val="true" />
</item>
@ -944,20 +945,16 @@
<item id="49766" name="Unidentified Stone" type="EtcItem">
<!-- Double-click to obtain one of the following items. -->
<set name="icon" val="icon.etc_magical_stone_i00" />
<set name="default_action" val="PEEL" />
<set name="material" val="PAPER" />
<set name="default_action" val="CAPSULE" />
<set name="immediate_effect" val="true" />
<set name="material" val="PAPER" />
<set name="is_tradable" val="true" />
<set name="is_dropable" val="true" />
<set name="is_sellable" val="true" />
<set name="material" val="LIQUID" />
<set name="is_stackable" val="true" />
<set name="handler" val="ExtractableItems" />
<set name="extractableCountMin" val="1" />
<set name="extractableCountMax" val="1" />
<capsuled_items>
<item id="49759" min="1" max="1" chance="50" /> <!-- Celestial Shard -->
<item id="49767" min="1" max="1" chance="50" /> <!-- Celestial Broken Shard -->
</capsuled_items>
<set name="handler" val="ItemSkills" />
<set name="commissionItemType" val="OTHER_ITEM" />
<skills>
<skill id="39157" level="1" /> <!-- Unidentified Rock -->
</skills>
</item>
<item id="49767" name="Broken Celestial Shard" type="EtcItem">
<!-- Broken Celestial Shard. Take it to the Dimensional Vortex at the 1st floor of the Tower of Insolence. -->
@ -970,10 +967,16 @@
<!-- Increases Fear/ Paralysis/ Silence Resistance for 20 min. -->
<set name="icon" val="icon.scroll_of_verification_i08" />
<set name="default_action" val="SKILL_REDUCE" />
<set name="etcitem_type" val="SCROLL" />
<set name="material" val="PAPER" />
<set name="weight" val="30" />
<set name="is_sellable" val="false" />
<set name="is_stackable" val="true" />
<set name="handler" val="ItemSkills" />
<set name="commissionItemType" val="OTHER_ITEM" />
<skills>
<skill id="39156" level="1" /> <!-- Scroll of Heavenly Protection -->
</skills>
</item>
<item id="49769" name="Improved Scroll Box: Emperor Baium's Enchant" type="EtcItem">
<!-- Double-click to obtain Stable Scroll: Enchant C/ B-grade Weapon, Improved Scroll: Enchant B/ C-grade Weapon, or Scroll: Enchant B/ C-grade Weapon. -->

View File

@ -1146,16 +1146,53 @@
<skill id="39156" toLevel="1" name="Scroll of Heavenly Protection">
<!-- For 20 min., Paralysis Resistance +15, Fear/ Silence Resistance +10. -->
<icon>icon.scroll_of_verification_i08</icon>
<operateType>A1</operateType>
<isMagic>4</isMagic>
<reuseDelay>10000</reuseDelay>
<effectPoint>1</effectPoint>
<abnormalLevel>1</abnormalLevel>
<abnormalTime>1200</abnormalTime>
<abnormalType>POTION_OF_GENESIS</abnormalType>
<isMagic>4</isMagic> <!-- Item Skill -->
<magicLevel>1</magicLevel>
<itemConsumeCount>1</itemConsumeCount>
<itemConsumeId>49768</itemConsumeId>
<operateType>A2</operateType>
<basicProperty>NONE</basicProperty>
<magicCriticalRate>5</magicCriticalRate>
<hitCancelTime>0</hitCancelTime>
<targetType>SELF</targetType>
<affectScope>SINGLE</affectScope>
<effects>
<effect name="DefenceTrait">
<PARALYZE>15</PARALYZE>
<DERANGEMENT>10</DERANGEMENT>
</effect>
</effects>
</skill>
<skill id="39157" toLevel="1" name="Unidentified Rock">
<icon>icon.etc_magical_stone_i00</icon>
<isMagic>2</isMagic> <!-- Static Skill -->
<magicLevel>1</magicLevel>
<operateType>A1</operateType>
<hitTime>500</hitTime>
<coolTime>500</coolTime>
<magicCriticalRate>5</magicCriticalRate>
<hitCancelTime>0</hitCancelTime>
<targetType>SELF</targetType>
<affectScope>SINGLE</affectScope>
<conditions>
<condition name="OpEncumbered">
<weightPercent>10</weightPercent>
<slotsPercent>10</slotsPercent>
</condition>
</conditions>
<effects>
<effect name="RestorationRandom">
<items>
<item chance="90">
<item id="49767" count="1" />
</item>
<item chance="10">
<item id="49759" count="1" />
</item>
</items>
</effect>
</effects>
</skill>
<skill id="39158" toLevel="1" name="Secret Scroll Box: Emperor Baium's Enchant">
<icon>icon.npoint_valakas_30day_box</icon>

View File

@ -880,6 +880,7 @@
<set name="material" val="PAPER" />
<set name="is_tradable" val="false" />
<set name="is_dropable" val="false" />
<set name="is_depositable" val="true" />
<set name="is_sellable" val="false" />
<set name="is_stackable" val="true" />
</item>
@ -944,20 +945,16 @@
<item id="49766" name="Unidentified Rock" type="EtcItem">
<!-- Double-click to obtain one of the following items. -->
<set name="icon" val="icon.etc_magical_stone_i00" />
<set name="default_action" val="PEEL" />
<set name="material" val="PAPER" />
<set name="default_action" val="CAPSULE" />
<set name="immediate_effect" val="true" />
<set name="material" val="PAPER" />
<set name="is_tradable" val="true" />
<set name="is_dropable" val="true" />
<set name="is_sellable" val="true" />
<set name="material" val="LIQUID" />
<set name="is_stackable" val="true" />
<set name="handler" val="ExtractableItems" />
<set name="extractableCountMin" val="1" />
<set name="extractableCountMax" val="1" />
<capsuled_items>
<item id="49759" min="1" max="1" chance="50" /> <!-- Celestial Shard -->
<item id="49767" min="1" max="1" chance="50" /> <!-- Celestial Broken Shard -->
</capsuled_items>
<set name="handler" val="ItemSkills" />
<set name="commissionItemType" val="OTHER_ITEM" />
<skills>
<skill id="39157" level="1" /> <!-- Unidentified Rock -->
</skills>
</item>
<item id="49767" name="Broken Celestial Shard" type="EtcItem">
<!-- Broken Celestial Shard. Take it to the Dimensional Vortex at the 1st floor of the Tower of Insolence. -->
@ -970,10 +967,16 @@
<!-- Increases Fear/ Paralysis/ Silence Resistance for 20 min. -->
<set name="icon" val="icon.scroll_of_verification_i08" />
<set name="default_action" val="SKILL_REDUCE" />
<set name="etcitem_type" val="SCROLL" />
<set name="material" val="PAPER" />
<set name="weight" val="30" />
<set name="is_sellable" val="false" />
<set name="is_stackable" val="true" />
<set name="handler" val="ItemSkills" />
<set name="commissionItemType" val="OTHER_ITEM" />
<skills>
<skill id="39156" level="1" /> <!-- Scroll of Heavenly Protection -->
</skills>
</item>
<item id="49769" name="Improved Scroll Box: Emperor Baium's Enchant" type="EtcItem">
<!-- Double-click to obtain Stable Scroll: Enchant C/ B-grade Weapon, Improved Scroll: Enchant B/ C-grade Weapon, or Scroll: Enchant B/ C-grade Weapon. -->

View File

@ -1146,16 +1146,53 @@
<skill id="39156" toLevel="1" name="Scroll of Heavenly Protection">
<!-- Paralysis Resistance +15% Silence Resistance +10% Fear Resistance +10% -->
<icon>icon.scroll_of_verification_i08</icon>
<operateType>A1</operateType>
<isMagic>4</isMagic>
<reuseDelay>10000</reuseDelay>
<effectPoint>1</effectPoint>
<abnormalLevel>1</abnormalLevel>
<abnormalTime>1200</abnormalTime>
<abnormalType>POTION_OF_GENESIS</abnormalType>
<isMagic>4</isMagic> <!-- Item Skill -->
<magicLevel>1</magicLevel>
<itemConsumeCount>1</itemConsumeCount>
<itemConsumeId>49768</itemConsumeId>
<operateType>A2</operateType>
<basicProperty>NONE</basicProperty>
<magicCriticalRate>5</magicCriticalRate>
<hitCancelTime>0</hitCancelTime>
<targetType>SELF</targetType>
<affectScope>SINGLE</affectScope>
<effects>
<effect name="DefenceTrait">
<PARALYZE>15</PARALYZE>
<DERANGEMENT>10</DERANGEMENT>
</effect>
</effects>
</skill>
<skill id="39157" toLevel="1" name="Unidentified Rock">
<icon>icon.etc_magical_stone_i00</icon>
<isMagic>2</isMagic> <!-- Static Skill -->
<magicLevel>1</magicLevel>
<operateType>A1</operateType>
<hitTime>500</hitTime>
<coolTime>500</coolTime>
<magicCriticalRate>5</magicCriticalRate>
<hitCancelTime>0</hitCancelTime>
<targetType>SELF</targetType>
<affectScope>SINGLE</affectScope>
<conditions>
<condition name="OpEncumbered">
<weightPercent>10</weightPercent>
<slotsPercent>10</slotsPercent>
</condition>
</conditions>
<effects>
<effect name="RestorationRandom">
<items>
<item chance="90">
<item id="49767" count="1" />
</item>
<item chance="10">
<item id="49759" count="1" />
</item>
</items>
</effect>
</effects>
</skill>
<skill id="39158" toLevel="1" name="Secret Scroll Box: Emperor Baium's Enchant">
<icon>icon.npoint_valakas_30day_box</icon>

View File

@ -880,6 +880,7 @@
<set name="material" val="PAPER" />
<set name="is_tradable" val="false" />
<set name="is_dropable" val="false" />
<set name="is_depositable" val="true" />
<set name="is_sellable" val="false" />
<set name="is_stackable" val="true" />
</item>
@ -944,20 +945,16 @@
<item id="49766" name="Unidentified Rock" type="EtcItem">
<!-- Double-click to obtain one of the following items. -->
<set name="icon" val="icon.etc_magical_stone_i00" />
<set name="default_action" val="PEEL" />
<set name="material" val="PAPER" />
<set name="default_action" val="CAPSULE" />
<set name="immediate_effect" val="true" />
<set name="material" val="PAPER" />
<set name="is_tradable" val="true" />
<set name="is_dropable" val="true" />
<set name="is_sellable" val="true" />
<set name="material" val="LIQUID" />
<set name="is_stackable" val="true" />
<set name="handler" val="ExtractableItems" />
<set name="extractableCountMin" val="1" />
<set name="extractableCountMax" val="1" />
<capsuled_items>
<item id="49759" min="1" max="1" chance="50" /> <!-- Celestial Shard -->
<item id="49767" min="1" max="1" chance="50" /> <!-- Celestial Broken Shard -->
</capsuled_items>
<set name="handler" val="ItemSkills" />
<set name="commissionItemType" val="OTHER_ITEM" />
<skills>
<skill id="39157" level="1" /> <!-- Unidentified Rock -->
</skills>
</item>
<item id="49767" name="Broken Celestial Shard" type="EtcItem">
<!-- Broken Celestial Shard. Take it to the Dimensional Vortex at the 1st floor of the Tower of Insolence. -->
@ -970,10 +967,16 @@
<!-- Increases Fear/ Paralysis/ Silence Resistance for 20 min. -->
<set name="icon" val="icon.scroll_of_verification_i08" />
<set name="default_action" val="SKILL_REDUCE" />
<set name="etcitem_type" val="SCROLL" />
<set name="material" val="PAPER" />
<set name="weight" val="30" />
<set name="is_sellable" val="false" />
<set name="is_stackable" val="true" />
<set name="handler" val="ItemSkills" />
<set name="commissionItemType" val="OTHER_ITEM" />
<skills>
<skill id="39156" level="1" /> <!-- Scroll of Heavenly Protection -->
</skills>
</item>
<item id="49769" name="Improved Scroll Box: Emperor Baium's Enchant" type="EtcItem">
<!-- Double-click to obtain Stable Scroll: Enchant C/ B-grade Weapon, Improved Scroll: Enchant B/ C-grade Weapon, or Scroll: Enchant B/ C-grade Weapon. -->

View File

@ -1146,16 +1146,53 @@
<skill id="39156" toLevel="1" name="Scroll of Heavenly Protection">
<!-- Paralysis Resistance +15% Silence Resistance +10% Fear Resistance +10% -->
<icon>icon.scroll_of_verification_i08</icon>
<operateType>A1</operateType>
<isMagic>4</isMagic>
<reuseDelay>10000</reuseDelay>
<effectPoint>1</effectPoint>
<abnormalLevel>1</abnormalLevel>
<abnormalTime>1200</abnormalTime>
<abnormalType>POTION_OF_GENESIS</abnormalType>
<isMagic>4</isMagic> <!-- Item Skill -->
<magicLevel>1</magicLevel>
<itemConsumeCount>1</itemConsumeCount>
<itemConsumeId>49768</itemConsumeId>
<operateType>A2</operateType>
<basicProperty>NONE</basicProperty>
<magicCriticalRate>5</magicCriticalRate>
<hitCancelTime>0</hitCancelTime>
<targetType>SELF</targetType>
<affectScope>SINGLE</affectScope>
<effects>
<effect name="DefenceTrait">
<PARALYZE>15</PARALYZE>
<DERANGEMENT>10</DERANGEMENT>
</effect>
</effects>
</skill>
<skill id="39157" toLevel="1" name="Unidentified Rock">
<icon>icon.etc_magical_stone_i00</icon>
<isMagic>2</isMagic> <!-- Static Skill -->
<magicLevel>1</magicLevel>
<operateType>A1</operateType>
<hitTime>500</hitTime>
<coolTime>500</coolTime>
<magicCriticalRate>5</magicCriticalRate>
<hitCancelTime>0</hitCancelTime>
<targetType>SELF</targetType>
<affectScope>SINGLE</affectScope>
<conditions>
<condition name="OpEncumbered">
<weightPercent>10</weightPercent>
<slotsPercent>10</slotsPercent>
</condition>
</conditions>
<effects>
<effect name="RestorationRandom">
<items>
<item chance="90">
<item id="49767" count="1" />
</item>
<item chance="10">
<item id="49759" count="1" />
</item>
</items>
</effect>
</effects>
</skill>
<skill id="39158" toLevel="1" name="Secret Scroll Box: Emperor Baium's Enchant">
<icon>icon.npoint_valakas_30day_box</icon>