Advertisement
Guest User

Untitled

a guest
Jul 10th, 2018
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.19 KB | None | 0 0
  1. 高級モンスターの登場確率が増加(eRareMonPro) の効果量が不明と書いてあったので調べてみた
  2. 効果は1枚につき+5% かける20枚で最大+100% ☆4と☆5の魔物だけにかかる
  3. 抽選処理はこう
  4.  
  5. ☆1 (5000 - 25 * 経過日数) または 1000 の大きい方
  6. ☆2 2500 + 25 * 経過日数
  7. ☆3 1000 + 15 * 経過日数
  8. ☆4 (300 + 10 * 経過日数) * 高級増加
  9. ☆5 (100 + 5 * 経過日数) * 高級増加
  10.  
  11. でた数字を全部足して分母にすると確率
  12.  
  13. [0]
  14. string Key = "eAutoPower"
  15. string Category = "eFunction"
  16. string SubCategory = "eFunction"
  17. int Max = 1
  18. int Rate = 1
  19. float Value = 1
  20. [1]
  21. string Key = "eChoiceComposeMode"
  22. string Category = "eFunction"
  23. string SubCategory = "eFunction"
  24. int Max = 1
  25. int Rate = 5
  26. float Value = 1
  27. [2]
  28. string Key = "eAddFortuneteller"
  29. string Category = "eFunction"
  30. string SubCategory = "eFunction"
  31. int Max = 1
  32. int Rate = 5
  33. float Value = 1
  34. [3]
  35. string Key = "eMWSecurity"
  36. string Category = "eAbility"
  37. string SubCategory = "eAbility"
  38. int Max = 3
  39. int Rate = 5
  40. float Value = 1
  41. [4]
  42. string Key = "eMWStartLv"
  43. string Category = "eAbility"
  44. string SubCategory = "eAbility"
  45. int Max = 10
  46. int Rate = 5
  47. float Value = 2
  48. [5]
  49. string Key = "eStartGold"
  50. string Category = "eAbility"
  51. string SubCategory = "eAbility"
  52. int Max = 10
  53. int Rate = 5
  54. float Value = 25
  55. [6]
  56. string Key = "eStartRelic"
  57. string Category = "eAbility"
  58. string SubCategory = "eAbility"
  59. int Max = 1
  60. int Rate = 3
  61. float Value = 1
  62. [7]
  63. string Key = "eStartMonster"
  64. string Category = "eAbility"
  65. string SubCategory = "eAbility"
  66. int Max = 3
  67. int Rate = 5
  68. float Value = 1
  69. [8]
  70. string Key = "eSuccessionMon"
  71. string Category = "eAbility"
  72. string SubCategory = "eAbility"
  73. int Max = 4
  74. int Rate = 2
  75. float Value = 1
  76. [9]
  77. string Key = "eSuccessionSkillCnt"
  78. string Category = "eAbility"
  79. string SubCategory = "eAbility"
  80. int Max = 1
  81. int Rate = 1
  82. float Value = 1
  83. [10]
  84. string Key = "eRareMonPro"
  85. string Category = "eAbility"
  86. string SubCategory = "eAbility"
  87. int Max = 20
  88. int Rate = 5
  89. float Value = 0.0500000007
  90. [11]
  91. string Key = "eMWMino"
  92. string Category = "eUnlock"
  93. string SubCategory = "eUnlockMW"
  94. int Max = 1
  95. int Rate = 2
  96. float Value = 1004
  97. [12]
  98. string Key = "eMWRich"
  99. string Category = "eUnlock"
  100. string SubCategory = "eUnlockMW"
  101. int Max = 1
  102. int Rate = 2
  103. float Value = 1003
  104. [13]
  105. string Key = "eMWIfrit"
  106. string Category = "eUnlock"
  107. string SubCategory = "eUnlockMW"
  108. int Max = 1
  109. int Rate = 2
  110. float Value = 1005
  111. [14]
  112. string Key = "eMWNymph"
  113. string Category = "eUnlock"
  114. string SubCategory = "eUnlockMW"
  115. int Max = 1
  116. int Rate = 2
  117. float Value = 1006
  118. [15]
  119. string Key = "eMWMermaid"
  120. string Category = "eUnlock"
  121. string SubCategory = "eUnlockMW"
  122. int Max = 1
  123. int Rate = 2
  124. float Value = 1007
  125. [16]
  126. string Key = "eSuccessionRoom"
  127. string Category = "eAbility"
  128. string SubCategory = "eAbility"
  129. int Max = 2
  130. int Rate = 2
  131. float Value = 1
  132. [17]
  133. string Key = "eDungeonExpand"
  134. string Category = "eAbility"
  135. string SubCategory = "eAbility"
  136. int Max = 1
  137. int Rate = 1
  138. float Value = 1
  139. [18]
  140. string Key = "eReduceEquipGrade0Rate"
  141. string Category = "eAbility"
  142. string SubCategory = "eAbility"
  143. int Max = 5
  144. int Rate = 5
  145. float Value = 0.200000003
  146. [19]
  147. string Key = "eReduceEquipGrade1Rate"
  148. string Category = "eAbility"
  149. string SubCategory = "eAbility"
  150. int Max = 5
  151. int Rate = 5
  152. float Value = 0.200000003
  153. [20]
  154. string Key = "eUnit26"
  155. string Category = "eUnlock"
  156. string SubCategory = "eUnlockUnit"
  157. int Max = 1
  158. int Rate = 1
  159. float Value = 26
  160. [21]
  161. string Key = "eUnit27"
  162. string Category = "eUnlock"
  163. string SubCategory = "eUnlockUnit"
  164. int Max = 1
  165. int Rate = 1
  166. float Value = 27
  167. [22]
  168. string Key = "eUnit28"
  169. string Category = "eUnlock"
  170. string SubCategory = "eUnlockUnit"
  171. int Max = 1
  172. int Rate = 1
  173. float Value = 28
  174. [23]
  175. string Key = "eUnit29"
  176. string Category = "eUnlock"
  177. string SubCategory = "eUnlockUnit"
  178. int Max = 1
  179. int Rate = 1
  180. float Value = 29
  181. [24]
  182. string Key = "eUnit30"
  183. string Category = "eUnlock"
  184. string SubCategory = "eUnlockUnit"
  185. int Max = 1
  186. int Rate = 1
  187. float Value = 30
  188. [25]
  189. string Key = "eUnit31"
  190. string Category = "eUnlock"
  191. string SubCategory = "eUnlockUnit"
  192. int Max = 1
  193. int Rate = 1
  194. float Value = 31
  195. [26]
  196. string Key = "eUnit32"
  197. string Category = "eUnlock"
  198. string SubCategory = "eUnlockUnit"
  199. int Max = 1
  200. int Rate = 1
  201. float Value = 32
  202. [27]
  203. string Key = "eUnit33"
  204. string Category = "eUnlock"
  205. string SubCategory = "eUnlockUnit"
  206. int Max = 1
  207. int Rate = 1
  208. float Value = 33
  209. [28]
  210. string Key = "eUnit34"
  211. string Category = "eUnlock"
  212. string SubCategory = "eUnlockUnit"
  213. int Max = 1
  214. int Rate = 1
  215. float Value = 34
  216. [29]
  217. string Key = "eUnit35"
  218. string Category = "eUnlock"
  219. string SubCategory = "eUnlockUnit"
  220. int Max = 1
  221. int Rate = 1
  222. float Value = 35
  223. [30]
  224. string Key = "eUnit36"
  225. string Category = "eUnlock"
  226. string SubCategory = "eUnlockUnit"
  227. int Max = 1
  228. int Rate = 1
  229. float Value = 36
  230. [31]
  231. string Key = "eUnit136"
  232. string Category = "eUnlock"
  233. string SubCategory = "eUnlockUnit"
  234. int Max = 1
  235. int Rate = 1
  236. float Value = 136
  237. [32]
  238. string Key = "eUnit137"
  239. string Category = "eUnlock"
  240. string SubCategory = "eUnlockUnit"
  241. int Max = 1
  242. int Rate = 1
  243. float Value = 137
  244. [33]
  245. string Key = "eUnit138"
  246. string Category = "eUnlock"
  247. string SubCategory = "eUnlockUnit"
  248. int Max = 1
  249. int Rate = 1
  250. float Value = 138
  251. [34]
  252. string Key = "eUnit139"
  253. string Category = "eUnlock"
  254. string SubCategory = "eUnlockUnit"
  255. int Max = 1
  256. int Rate = 1
  257. float Value = 139
  258. [35]
  259. string Key = "eUnit140"
  260. string Category = "eUnlock"
  261. string SubCategory = "eUnlockUnit"
  262. int Max = 1
  263. int Rate = 1
  264. float Value = 140
  265. [36]
  266. string Key = "eUnit141"
  267. string Category = "eUnlock"
  268. string SubCategory = "eUnlockUnit"
  269. int Max = 1
  270. int Rate = 1
  271. float Value = 141
  272. [37]
  273. string Key = "eUnit142"
  274. string Category = "eUnlock"
  275. string SubCategory = "eUnlockUnit"
  276. int Max = 1
  277. int Rate = 1
  278. float Value = 142
  279. [38]
  280. string Key = "eUnit143"
  281. string Category = "eUnlock"
  282. string SubCategory = "eUnlockUnit"
  283. int Max = 1
  284. int Rate = 1
  285. float Value = 143
  286. [39]
  287. string Key = "eUnit144"
  288. string Category = "eUnlock"
  289. string SubCategory = "eUnlockUnit"
  290. int Max = 1
  291. int Rate = 1
  292. float Value = 144
  293. [40]
  294. string Key = "eUnit145"
  295. string Category = "eUnlock"
  296. string SubCategory = "eUnlockUnit"
  297. int Max = 1
  298. int Rate = 1
  299. float Value = 145
  300. [41]
  301. string Key = "eUnit146"
  302. string Category = "eUnlock"
  303. string SubCategory = "eUnlockUnit"
  304. int Max = 1
  305. int Rate = 1
  306. float Value = 146
  307. [42]
  308. string Key = "eUnit147"
  309. string Category = "eUnlock"
  310. string SubCategory = "eUnlockUnit"
  311. int Max = 1
  312. int Rate = 1
  313. float Value = 147
  314. [43]
  315. string Key = "eRoomBetray"
  316. string Category = "eUnlock"
  317. string SubCategory = "eUnlockRoom"
  318. int Max = 1
  319. int Rate = 1
  320. float Value = 1
  321. [44]
  322. string Key = "eRoomTempt"
  323. string Category = "eUnlock"
  324. string SubCategory = "eUnlockRoom"
  325. int Max = 1
  326. int Rate = 1
  327. float Value = 1
  328. [45]
  329. string Key = "eRoomBlitz"
  330. string Category = "eUnlock"
  331. string SubCategory = "eUnlockRoom"
  332. int Max = 1
  333. int Rate = 1
  334. float Value = 1
  335. [46]
  336. string Key = "eRoomVamp"
  337. string Category = "eUnlock"
  338. string SubCategory = "eUnlockRoom"
  339. int Max = 1
  340. int Rate = 1
  341. float Value = 1
  342. [47]
  343. string Key = "eRoomExploit"
  344. string Category = "eUnlock"
  345. string SubCategory = "eUnlockRoom"
  346. int Max = 1
  347. int Rate = 1
  348. float Value = 1
  349. [48]
  350. string Key = "eRoomSacrifice"
  351. string Category = "eUnlock"
  352. string SubCategory = "eUnlockRoom"
  353. int Max = 1
  354. int Rate = 1
  355. float Value = 1
  356. [49]
  357. string Key = "eRoomTripleGiant"
  358. string Category = "eUnlock"
  359. string SubCategory = "eUnlockRoom"
  360. int Max = 1
  361. int Rate = 1
  362. float Value = 1
  363. [50]
  364. string Key = "eRoomGunpowder"
  365. string Category = "eUnlock"
  366. string SubCategory = "eUnlockRoom"
  367. int Max = 1
  368. int Rate = 1
  369. float Value = 1
  370. [51]
  371. string Key = "eRoomMeteor"
  372. string Category = "eUnlock"
  373. string SubCategory = "eUnlockRoom"
  374. int Max = 1
  375. int Rate = 1
  376. float Value = 1
  377. [52]
  378. string Key = "eRoomArrowrain"
  379. string Category = "eUnlock"
  380. string SubCategory = "eUnlockRoom"
  381. int Max = 1
  382. int Rate = 1
  383. float Value = 1
  384. [53]
  385. string Key = "eRoomChainLightning"
  386. string Category = "eUnlock"
  387. string SubCategory = "eUnlockRoom"
  388. int Max = 1
  389. int Rate = 1
  390. float Value = 1
  391. [54]
  392. string Key = "eRoomElectricLeakage"
  393. string Category = "eUnlock"
  394. string SubCategory = "eUnlockRoom"
  395. int Max = 1
  396. int Rate = 1
  397. float Value = 1
  398. [55]
  399. string Key = "eRoomTailwind"
  400. string Category = "eUnlock"
  401. string SubCategory = "eUnlockRoom"
  402. int Max = 1
  403. int Rate = 1
  404. float Value = 1
  405. [56]
  406. string Key = "eRelicShieldMWRoom"
  407. string Category = "eUnlock"
  408. string SubCategory = "eUnlockRelic"
  409. int Max = 1
  410. int Rate = 1
  411. float Value = 1
  412. [57]
  413. string Key = "eRelicDefMWRoomHero"
  414. string Category = "eUnlock"
  415. string SubCategory = "eUnlockRelic"
  416. int Max = 1
  417. int Rate = 1
  418. float Value = 1
  419. [58]
  420. string Key = "eRelicRdcDmgToMW"
  421. string Category = "eUnlock"
  422. string SubCategory = "eUnlockRelic"
  423. int Max = 1
  424. int Rate = 1
  425. float Value = 1
  426. [59]
  427. string Key = "eRelicRdcDmgAllMonster"
  428. string Category = "eUnlock"
  429. string SubCategory = "eUnlockRelic"
  430. int Max = 1
  431. int Rate = 1
  432. float Value = 1
  433. [60]
  434. string Key = "eRelicRdcAtkAllHero"
  435. string Category = "eUnlock"
  436. string SubCategory = "eUnlockRelic"
  437. int Max = 1
  438. int Rate = 1
  439. float Value = 1
  440. [61]
  441. string Key = "eRelicFearIncDmg"
  442. string Category = "eUnlock"
  443. string SubCategory = "eUnlockRelic"
  444. int Max = 1
  445. int Rate = 1
  446. float Value = 1
  447. [62]
  448. string Key = "eRelicUndeadAddShield"
  449. string Category = "eUnlock"
  450. string SubCategory = "eUnlockRelic"
  451. int Max = 1
  452. int Rate = 1
  453. float Value = 1
  454. [63]
  455. string Key = "eRelicDeadlyIncAtk"
  456. string Category = "eUnlock"
  457. string SubCategory = "eUnlockRelic"
  458. int Max = 1
  459. int Rate = 1
  460. float Value = 1
  461. [64]
  462. string Key = "eRelicUndeadOnStart"
  463. string Category = "eUnlock"
  464. string SubCategory = "eUnlockRelic"
  465. int Max = 1
  466. int Rate = 1
  467. float Value = 1
  468. [65]
  469. string Key = "eRelicUndeadIncAtk"
  470. string Category = "eUnlock"
  471. string SubCategory = "eUnlockRelic"
  472. int Max = 1
  473. int Rate = 1
  474. float Value = 1
  475. [66]
  476. string Key = "eRelicRagebombRemainRage"
  477. string Category = "eUnlock"
  478. string SubCategory = "eUnlockRelic"
  479. int Max = 1
  480. int Rate = 1
  481. float Value = 1
  482. [67]
  483. string Key = "eRelicRageRdcDmg"
  484. string Category = "eUnlock"
  485. string SubCategory = "eUnlockRelic"
  486. int Max = 1
  487. int Rate = 1
  488. float Value = 1
  489. [68]
  490. string Key = "eRelicSplitVulAddRage"
  491. string Category = "eUnlock"
  492. string SubCategory = "eUnlockRelic"
  493. int Max = 1
  494. int Rate = 1
  495. float Value = 1
  496. [69]
  497. string Key = "eRelicRageOnStart"
  498. string Category = "eUnlock"
  499. string SubCategory = "eUnlockRelic"
  500. int Max = 1
  501. int Rate = 1
  502. float Value = 1
  503. [70]
  504. string Key = "eRelicShoutHealMW"
  505. string Category = "eUnlock"
  506. string SubCategory = "eUnlockRelic"
  507. int Max = 1
  508. int Rate = 1
  509. float Value = 1
  510. [71]
  511. string Key = "eRelicBurnIncDmg"
  512. string Category = "eUnlock"
  513. string SubCategory = "eUnlockRelic"
  514. int Max = 1
  515. int Rate = 1
  516. float Value = 1
  517. [72]
  518. string Key = "eRelicHasteRdcDmg"
  519. string Category = "eUnlock"
  520. string SubCategory = "eUnlockRelic"
  521. int Max = 1
  522. int Rate = 1
  523. float Value = 1
  524. [73]
  525. string Key = "eRelicHasteIncEffectByStack"
  526. string Category = "eUnlock"
  527. string SubCategory = "eUnlockRelic"
  528. int Max = 1
  529. int Rate = 1
  530. float Value = 1
  531. [74]
  532. string Key = "eRelicBurnGiveHasteByAttack"
  533. string Category = "eUnlock"
  534. string SubCategory = "eUnlockRelic"
  535. int Max = 1
  536. int Rate = 1
  537. float Value = 1
  538. [75]
  539. string Key = "eRelicBurnAddDmgByHP"
  540. string Category = "eUnlock"
  541. string SubCategory = "eUnlockRelic"
  542. int Max = 1
  543. int Rate = 1
  544. float Value = 1
  545. [76]
  546. string Key = "eRelicAbsorbAddBlock"
  547. string Category = "eUnlock"
  548. string SubCategory = "eUnlockRelic"
  549. int Max = 1
  550. int Rate = 1
  551. float Value = 1
  552. [77]
  553. string Key = "eRelicDmgToRegen"
  554. string Category = "eUnlock"
  555. string SubCategory = "eUnlockRelic"
  556. int Max = 1
  557. int Rate = 1
  558. float Value = 1
  559. [78]
  560. string Key = "eRelicAbsorbAddFocusOnActive"
  561. string Category = "eUnlock"
  562. string SubCategory = "eUnlockRelic"
  563. int Max = 1
  564. int Rate = 1
  565. float Value = 1
  566. [79]
  567. string Key = "eRelicRegenDecRdc"
  568. string Category = "eUnlock"
  569. string SubCategory = "eUnlockRelic"
  570. int Max = 1
  571. int Rate = 1
  572. float Value = 1
  573. [80]
  574. string Key = "eRelicRegenToArmor"
  575. string Category = "eUnlock"
  576. string SubCategory = "eUnlockRelic"
  577. int Max = 1
  578. int Rate = 1
  579. float Value = 1
  580. [81]
  581. string Key = "eRelicSlowIncTrapDmg"
  582. string Category = "eUnlock"
  583. string SubCategory = "eUnlockRelic"
  584. int Max = 1
  585. int Rate = 1
  586. float Value = 1
  587. [82]
  588. string Key = "eRelicDazeOnStart"
  589. string Category = "eUnlock"
  590. string SubCategory = "eUnlockRelic"
  591. int Max = 1
  592. int Rate = 1
  593. float Value = 1
  594. [83]
  595. string Key = "eRelicSlowIncDmgByStack"
  596. string Category = "eUnlock"
  597. string SubCategory = "eUnlockRelic"
  598. int Max = 1
  599. int Rate = 1
  600. float Value = 1
  601. [84]
  602. string Key = "eRelicDazeAddSlow"
  603. string Category = "eUnlock"
  604. string SubCategory = "eUnlockRelic"
  605. int Max = 1
  606. int Rate = 1
  607. float Value = 1
  608. [85]
  609. string Key = "eRelicStunIncDmg"
  610. string Category = "eUnlock"
  611. string SubCategory = "eUnlockRelic"
  612. int Max = 1
  613. int Rate = 1
  614. float Value = 1
  615. [86]
  616. string Key = "eRelicDazeRdcMoveSpd"
  617. string Category = "eUnlock"
  618. string SubCategory = "eUnlockRelic"
  619. int Max = 1
  620. int Rate = 1
  621. float Value = 1
  622. [87]
  623. string Key = "eMWBonusExp1001"
  624. string Category = "eAbility"
  625. string SubCategory = "eAbility"
  626. int Max = 1
  627. int Rate = 1
  628. float Value = 1
  629. [88]
  630. string Key = "eMWBonusExp1002"
  631. string Category = "eAbility"
  632. string SubCategory = "eAbility"
  633. int Max = 1
  634. int Rate = 1
  635. float Value = 1
  636. [89]
  637. string Key = "eMWBonusExp1003"
  638. string Category = "eAbility"
  639. string SubCategory = "eAbility"
  640. int Max = 1
  641. int Rate = 1
  642. float Value = 1
  643. [90]
  644. string Key = "eMWBonusExp1004"
  645. string Category = "eAbility"
  646. string SubCategory = "eAbility"
  647. int Max = 1
  648. int Rate = 1
  649. float Value = 1
  650. [91]
  651. string Key = "eMWBonusExp1005"
  652. string Category = "eAbility"
  653. string SubCategory = "eAbility"
  654. int Max = 1
  655. int Rate = 1
  656. float Value = 1
  657. [92]
  658. string Key = "eMWBonusExp1006"
  659. string Category = "eAbility"
  660. string SubCategory = "eAbility"
  661. int Max = 1
  662. int Rate = 1
  663. float Value = 1
  664. [93]
  665. string Key = "eMWBonusExp1007"
  666. string Category = "eAbility"
  667. string SubCategory = "eAbility"
  668. int Max = 1
  669. int Rate = 1
  670. float Value = 1
  671. [94]
  672. string Key = "eBattleSpeedx3"
  673. string Category = "eFunction"
  674. string SubCategory = "eFunction"
  675. int Max = 1
  676. int Rate = 1
  677. float Value = 1
  678. [95]
  679. string Key = "eLilithWake"
  680. string Category = "eAbility"
  681. string SubCategory = "eWakeMW"
  682. int Max = 1
  683. int Rate = 1
  684. float Value = 5
  685. [96]
  686. string Key = "eElizabethWake"
  687. string Category = "eAbility"
  688. string SubCategory = "eWakeMW"
  689. int Max = 1
  690. int Rate = 1
  691. float Value = 5
  692. [97]
  693. string Key = "eRebeccaWake"
  694. string Category = "eAbility"
  695. string SubCategory = "eWakeMW"
  696. int Max = 1
  697. int Rate = 1
  698. float Value = 5
  699. [98]
  700. string Key = "eEmmaWake"
  701. string Category = "eAbility"
  702. string SubCategory = "eWakeMW"
  703. int Max = 1
  704. int Rate = 1
  705. float Value = 5
  706. [99]
  707. string Key = "eTaniaWake"
  708. string Category = "eAbility"
  709. string SubCategory = "eWakeMW"
  710. int Max = 1
  711. int Rate = 1
  712. float Value = 5
  713. [100]
  714. string Key = "eFloriaWake"
  715. string Category = "eAbility"
  716. string SubCategory = "eWakeMW"
  717. int Max = 1
  718. int Rate = 1
  719. float Value = 5
  720. [101]
  721. string Key = "eMarielleWake"
  722. string Category = "eAbility"
  723. string SubCategory = "eWakeMW"
  724. int Max = 1
  725. int Rate = 1
  726. float Value = 5
  727. [102]
  728. string Key = "eRelicDungeonExpandTop"
  729. string Category = "eUnlock"
  730. string SubCategory = "eUnlockRelic"
  731. int Max = 1
  732. int Rate = 1
  733. float Value = 1
  734. [103]
  735. string Key = "eRelicDungeonExpandBottom"
  736. string Category = "eUnlock"
  737. string SubCategory = "eUnlockRelic"
  738. int Max = 1
  739. int Rate = 1
  740. float Value = 1
  741. [104]
  742. string Key = "eRoomExchange"
  743. string Category = "eFunction"
  744. string SubCategory = "eFunction"
  745. int Max = 1
  746. int Rate = 1
  747. float Value = 1
  748. [105]
  749. string Key = "eMonsterContainer"
  750. string Category = "eAbility"
  751. string SubCategory = "eAbility"
  752. int Max = 10
  753. int Rate = 1
  754. float Value = 1
  755. [106]
  756. string Key = "eRoomContainer"
  757. string Category = "eAbility"
  758. string SubCategory = "eAbility"
  759. int Max = 10
  760. int Rate = 1
  761. float Value = 1
  762. [107]
  763. string Key = "eRoomChaosbolt"
  764. string Category = "eUnlock"
  765. string SubCategory = "eUnlockRoom"
  766. int Max = 1
  767. int Rate = 1
  768. float Value = 1
  769. [108]
  770. string Key = "eRoomRainOfChaos"
  771. string Category = "eUnlock"
  772. string SubCategory = "eUnlockRoom"
  773. int Max = 1
  774. int Rate = 1
  775. float Value = 1
  776. [109]
  777. string Key = "eRoomOverawe"
  778. string Category = "eUnlock"
  779. string SubCategory = "eUnlockRoom"
  780. int Max = 1
  781. int Rate = 1
  782. float Value = 1
  783. [110]
  784. string Key = "eRoomFrostwind"
  785. string Category = "eUnlock"
  786. string SubCategory = "eUnlockRoom"
  787. int Max = 1
  788. int Rate = 1
  789. float Value = 1
  790. [111]
  791. string Key = "eRoomIceHole"
  792. string Category = "eUnlock"
  793. string SubCategory = "eUnlockRoom"
  794. int Max = 1
  795. int Rate = 1
  796. float Value = 1
  797. [112]
  798. string Key = "eRoomFrostStorm"
  799. string Category = "eUnlock"
  800. string SubCategory = "eUnlockRoom"
  801. int Max = 1
  802. int Rate = 1
  803. float Value = 1
  804. [113]
  805. string Key = "eRoomFireStrike"
  806. string Category = "eUnlock"
  807. string SubCategory = "eUnlockRoom"
  808. int Max = 1
  809. int Rate = 1
  810. float Value = 1
  811. [114]
  812. string Key = "eRoomFireStorm"
  813. string Category = "eUnlock"
  814. string SubCategory = "eUnlockRoom"
  815. int Max = 1
  816. int Rate = 1
  817. float Value = 1
  818. [115]
  819. string Key = "eRoomDynamite"
  820. string Category = "eUnlock"
  821. string SubCategory = "eUnlockRoom"
  822. int Max = 1
  823. int Rate = 1
  824. float Value = 1
  825. [116]
  826. string Key = "eRoomHugeMeteor"
  827. string Category = "eUnlock"
  828. string SubCategory = "eUnlockRoom"
  829. int Max = 1
  830. int Rate = 1
  831. float Value = 1
  832. [117]
  833. string Key = "eRoomBloodpool"
  834. string Category = "eUnlock"
  835. string SubCategory = "eUnlockRoom"
  836. int Max = 1
  837. int Rate = 1
  838. float Value = 1
  839. [118]
  840. string Key = "eRoomTreeofLife"
  841. string Category = "eUnlock"
  842. string SubCategory = "eUnlockRoom"
  843. int Max = 1
  844. int Rate = 1
  845. float Value = 1
  846. [119]
  847. string Key = "eRoomHealingWind"
  848. string Category = "eUnlock"
  849. string SubCategory = "eUnlockRoom"
  850. int Max = 1
  851. int Rate = 1
  852. float Value = 1
  853. [120]
  854. string Key = "eRoomHugeRoom"
  855. string Category = "eUnlock"
  856. string SubCategory = "eUnlockRoom"
  857. int Max = 1
  858. int Rate = 1
  859. float Value = 1
  860. [121]
  861. string Key = "eRoomSmashBattle"
  862. string Category = "eUnlock"
  863. string SubCategory = "eUnlockRoom"
  864. int Max = 1
  865. int Rate = 1
  866. float Value = 1
  867. [122]
  868. string Key = "eRoomDisease"
  869. string Category = "eUnlock"
  870. string SubCategory = "eUnlockRoom"
  871. int Max = 1
  872. int Rate = 1
  873. float Value = 1
  874. [123]
  875. string Key = "eRoomInfect"
  876. string Category = "eUnlock"
  877. string SubCategory = "eUnlockRoom"
  878. int Max = 1
  879. int Rate = 1
  880. float Value = 1
  881. [124]
  882. string Key = "eRoomPlague"
  883. string Category = "eUnlock"
  884. string SubCategory = "eUnlockRoom"
  885. int Max = 1
  886. int Rate = 1
  887. float Value = 1
  888. [125]
  889. string Key = "eRoomGraveyard"
  890. string Category = "eUnlock"
  891. string SubCategory = "eUnlockRoom"
  892. int Max = 1
  893. int Rate = 1
  894. float Value = 1
  895. [126]
  896. string Key = "eSkillOverspeed"
  897. string Category = "eUnlock"
  898. string SubCategory = "eUnlockSkill"
  899. int Max = 1
  900. int Rate = 1
  901. float Value = 1
  902. [127]
  903. string Key = "eSkillProtectRune"
  904. string Category = "eUnlock"
  905. string SubCategory = "eUnlockSkill"
  906. int Max = 1
  907. int Rate = 1
  908. float Value = 1
  909. [128]
  910. string Key = "eSkillBattleRage"
  911. string Category = "eUnlock"
  912. string SubCategory = "eUnlockSkill"
  913. int Max = 1
  914. int Rate = 1
  915. float Value = 1
  916. [129]
  917. string Key = "eSkillElectricWeapon"
  918. string Category = "eUnlock"
  919. string SubCategory = "eUnlockSkill"
  920. int Max = 1
  921. int Rate = 1
  922. float Value = 1
  923. [130]
  924. string Key = "eSkillPoisonedWeapon"
  925. string Category = "eUnlock"
  926. string SubCategory = "eUnlockSkill"
  927. int Max = 1
  928. int Rate = 1
  929. float Value = 1
  930. [131]
  931. string Key = "eSkillElectricArmor"
  932. string Category = "eUnlock"
  933. string SubCategory = "eUnlockSkill"
  934. int Max = 1
  935. int Rate = 1
  936. float Value = 1
  937. [132]
  938. string Key = "eSkillInitiative"
  939. string Category = "eUnlock"
  940. string SubCategory = "eUnlockSkill"
  941. int Max = 1
  942. int Rate = 1
  943. float Value = 1
  944. [133]
  945. string Key = "eEuip30"
  946. string Category = "eUnlock"
  947. string SubCategory = "eUnlockEquip"
  948. int Max = 1
  949. int Rate = 1
  950. float Value = 30
  951. [134]
  952. string Key = "eEuip31"
  953. string Category = "eUnlock"
  954. string SubCategory = "eUnlockEquip"
  955. int Max = 1
  956. int Rate = 1
  957. float Value = 31
  958. [135]
  959. string Key = "eEuip32"
  960. string Category = "eUnlock"
  961. string SubCategory = "eUnlockEquip"
  962. int Max = 1
  963. int Rate = 1
  964. float Value = 32
  965. [136]
  966. string Key = "eEuip33"
  967. string Category = "eUnlock"
  968. string SubCategory = "eUnlockEquip"
  969. int Max = 1
  970. int Rate = 1
  971. float Value = 33
  972. [137]
  973. string Key = "eEuip34"
  974. string Category = "eUnlock"
  975. string SubCategory = "eUnlockEquip"
  976. int Max = 1
  977. int Rate = 1
  978. float Value = 34
  979. [138]
  980. string Key = "eEuip35"
  981. string Category = "eUnlock"
  982. string SubCategory = "eUnlockEquip"
  983. int Max = 1
  984. int Rate = 1
  985. float Value = 35
  986. [139]
  987. string Key = "eEuip36"
  988. string Category = "eUnlock"
  989. string SubCategory = "eUnlockEquip"
  990. int Max = 1
  991. int Rate = 1
  992. float Value = 36
  993. [140]
  994. string Key = "eEuip37"
  995. string Category = "eUnlock"
  996. string SubCategory = "eUnlockEquip"
  997. int Max = 1
  998. int Rate = 1
  999. float Value = 37
  1000. [141]
  1001. string Key = "eEuip38"
  1002. string Category = "eUnlock"
  1003. string SubCategory = "eUnlockEquip"
  1004. int Max = 1
  1005. int Rate = 1
  1006. float Value = 38
  1007. [142]
  1008. string Key = "eEuip39"
  1009. string Category = "eUnlock"
  1010. string SubCategory = "eUnlockEquip"
  1011. int Max = 1
  1012. int Rate = 1
  1013. float Value = 39
  1014. [143]
  1015. string Key = "eEuip40"
  1016. string Category = "eUnlock"
  1017. string SubCategory = "eUnlockEquip"
  1018. int Max = 1
  1019. int Rate = 1
  1020. float Value = 40
  1021. [144]
  1022. string Key = "eEuip41"
  1023. string Category = "eUnlock"
  1024. string SubCategory = "eUnlockEquip"
  1025. int Max = 1
  1026. int Rate = 1
  1027. float Value = 41
  1028. [145]
  1029. string Key = "eEuip42"
  1030. string Category = "eUnlock"
  1031. string SubCategory = "eUnlockEquip"
  1032. int Max = 1
  1033. int Rate = 1
  1034. float Value = 42
  1035. [146]
  1036. string Key = "eEuip43"
  1037. string Category = "eUnlock"
  1038. string SubCategory = "eUnlockEquip"
  1039. int Max = 1
  1040. int Rate = 1
  1041. float Value = 43
  1042. [147]
  1043. string Key = "eEuip44"
  1044. string Category = "eUnlock"
  1045. string SubCategory = "eUnlockEquip"
  1046. int Max = 1
  1047. int Rate = 1
  1048. float Value = 44
  1049. [148]
  1050. string Key = "eEuip45"
  1051. string Category = "eUnlock"
  1052. string SubCategory = "eUnlockEquip"
  1053. int Max = 1
  1054. int Rate = 1
  1055. float Value = 45
  1056. [149]
  1057. string Key = "eSuccessionMon2"
  1058. string Category = "eAbility"
  1059. string SubCategory = "eAbility"
  1060. int Max = 2
  1061. int Rate = 1
  1062. float Value = 1
  1063. [150]
  1064. string Key = "eSuccessionRoom2"
  1065. string Category = "eAbility"
  1066. string SubCategory = "eAbility"
  1067. int Max = 1
  1068. int Rate = 1
  1069. float Value = 1
  1070. [151]
  1071. string Key = "eMWSecurity2"
  1072. string Category = "eAbility"
  1073. string SubCategory = "eAbility"
  1074. int Max = 2
  1075. int Rate = 5
  1076. float Value = 1
  1077. [152]
  1078. string Key = "eMWStartLv2"
  1079. string Category = "eAbility"
  1080. string SubCategory = "eAbility"
  1081. int Max = 10
  1082. int Rate = 5
  1083. float Value = 3
  1084. [153]
  1085. string Key = "eStartGold2"
  1086. string Category = "eAbility"
  1087. string SubCategory = "eAbility"
  1088. int Max = 10
  1089. int Rate = 5
  1090. float Value = 50
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement