Advertisement
Avatar_Fearless

VB.Net Items

Mar 26th, 2012
448
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Module items 'items and the properties of said items
  2.    Dim itemName As String
  3.     Dim itemLVLReq, cost, resell As Integer
  4.     Dim random As New Random()
  5.     'weapon data
  6.    Public watk, wdef, wevd, wacc, wmagatk, wmagdef, wmagevd, wmagacc, wgan, wani, wrai, wrue, wvak, wjuk As Integer
  7.     'head data
  8.    Public hdef, hmagdef, hmagacc, hmagatk, hmagevd, hatk, hacc, hevd, hgan, hani, hrai, hrue, hvak, hjuk As Integer
  9.     'body data
  10.    Public adef, amagdef, amagacc, amagatk, amagevd, aatk, aacc, aevd, agan, aani, arai, arue, avak, ajuk As Integer
  11.     'hand data
  12.    Public gdef, gmagdef, gmagacc, gmagatk, gmagevd, gatk, gacc, gevd, ggan, gani, grai, grue, gvak, gjuk As Integer
  13.     'feet data
  14.    Public bdef, bmagdef, bmagacc, bmagatk, bmagevd, batk, bacc, bevd, bgan, bani, brai, brue, bvak, bjuk As Integer
  15.  
  16.     Public Function IDFix(ByVal itemID As Integer)
  17.         'first chance error fix
  18.        If itemID >= 19 And itemID <= 100 Then 'helms
  19.            itemID = random.Next(1, 19)
  20.         ElseIf itemID >= 110 And itemID <= 200 Then 'boots
  21.            itemID = random.Next(101, 110)
  22.         ElseIf itemID >= 209 And itemID <= 300 Then 'armor
  23.            itemID = random.Next(201, 209)
  24.         ElseIf itemID >= 308 And itemID <= 400 Then 'gloves
  25.            itemID = random.Next(301, 308)
  26.         ElseIf itemID >= 431 And itemID <= 500 Then
  27.             itemID = random.Next(401, 431)
  28.         ElseIf itemID >= 531 And itemID <= 600 Then
  29.             itemID = random.Next(501, 531)
  30.         ElseIf itemID >= 1016 And itemID <= 2000 Then 'long arm
  31.            itemID = random.Next(1001, 1016)
  32.         ElseIf itemID >= 2055 And itemID <= 3000 Then 'blade master
  33.            itemID = random.Next(2001, 2055)
  34.         ElseIf itemID >= 3006 And itemID <= 4000 Then 'wave master
  35.            itemID = random.Next(3001, 3006)
  36.         ElseIf itemID >= 4006 And itemID <= 5000 Then '
  37.            itemID = random.Next(4001, 4006)
  38.         ElseIf itemID >= 5007 And itemID <= 6000 Then '
  39.            itemID = random.Next(5001, 5007)
  40.         ElseIf itemID >= 6031 And itemID <= 7000 Then '
  41.            itemID = random.Next(6001, 6031)
  42.         End If
  43.  
  44.         Return itemID
  45.     End Function
  46.  
  47.     Public Function itemlist(ByVal itemID As Integer, ByVal varTrigger As Integer)
  48.  
  49.         cost = 0
  50.         resell = 0
  51.  
  52.         If varTrigger = 3 Then
  53.             itemStatReset()
  54.         End If
  55.  
  56.         If itemID = 1 Then 'Helms
  57.            itemName = "Bandanna"
  58.             itemLVLReq = 1
  59.             hmagdef = 2
  60.             hmagevd = 6
  61.             hgan = 1
  62.             hani = 1
  63.             hrai = 1
  64.             hrue = 1
  65.             hvak = 1
  66.             hjuk = 1
  67.             cost = 400
  68.             resell = 200
  69.         ElseIf itemID = 2 Then
  70.             itemName = "Nomad's Hood"
  71.             itemLVLReq = 2
  72.             hdef = 1
  73.             hevd = 1
  74.             hmagdef = 1
  75.             hmagevd = 1
  76.             hgan = 1
  77.             hani = 1
  78.             hrai = 1
  79.             hrue = 1
  80.             hvak = 1
  81.             hjuk = 1
  82.             cost = 500
  83.             resell = 250
  84.         ElseIf itemID = 3 Then
  85.             itemName = "Head Gear"
  86.             itemLVLReq = 3
  87.             hdef = 2
  88.             hevd = 6
  89.             hgan = 1
  90.             hani = 1
  91.             hrai = 1
  92.             hrue = 1
  93.             hvak = 1
  94.             hjuk = 1
  95.             cost = 600
  96.             resell = 300
  97.         ElseIf itemID = 4 Then
  98.             itemName = "Ice Helm"
  99.             itemLVLReq = 18
  100.             hdef = 4
  101.             hevd = 9
  102.             hmagdef = 1
  103.             hmagevd = 1
  104.             hgan = 2
  105.             hani = 2
  106.             hrai = 2
  107.             hrue = 4
  108.             hjuk = 2
  109.             cost = 1800
  110.             resell = 900
  111.         ElseIf itemID = 5 Then
  112.             itemName = "Cougar Bandana"
  113.             itemLVLReq = 11
  114.             hmagdef = 3
  115.             hmagevd = 8
  116.             hgan = 1
  117.             hani = 1
  118.             hrai = 1
  119.             hrue = 1
  120.             hvak = 1
  121.             hjuk = 1
  122.             cost = 1200
  123.             resell = 600
  124.         ElseIf itemID = 6 Then
  125.             itemName = "Hunter's Hood"
  126.             itemLVLReq = 12
  127.             hdef = 2
  128.             hevd = 3
  129.             hmagdef = 2
  130.             hmagevd = 3
  131.             hgan = 4
  132.             hani = 1
  133.             hrai = 1
  134.             hrue = 1
  135.             hvak = 1
  136.             hjuk = 1
  137.         ElseIf itemID = 7 Then
  138.             itemName = "Mountain Helm"
  139.             itemLVLReq = 13
  140.             hdef = 3
  141.             hevd = 8
  142.             hgan = 1
  143.             hani = 1
  144.             hrai = 1
  145.             hrue = 1
  146.             hvak = 1
  147.             hjuk = 1
  148.         ElseIf itemID = 8 Then
  149.             itemName = "Ice Hunter Cap"
  150.             itemLVLReq = 17
  151.             hdef = 2
  152.             hevd = 4
  153.             hmagdef = 2
  154.             hmagevd = 4
  155.             hgan = 2
  156.             hani = 2
  157.             hrai = 2
  158.             hrue = 4
  159.             hjuk = 2
  160.         ElseIf itemID = 9 Then
  161.             itemName = "Guard Cap"
  162.             itemLVLReq = 7
  163.             hdef = 1
  164.             hevd = 2
  165.             hmagdef = 1
  166.             hmagevd = 2
  167.             hgan = 1
  168.             hani = 1
  169.             hrai = 1
  170.             hrue = 1
  171.             hjuk = 1
  172.             hvak = 1
  173.         ElseIf itemID = 10 Then
  174.             itemName = "Raccoon Earcap"
  175.             itemLVLReq = 16
  176.             hmagdef = 3
  177.             hmagevd = 9
  178.             hgan = 2
  179.             hani = 2
  180.             hrai = 2
  181.             hrue = 4
  182.             hjuk = 2
  183.             cost = 1600
  184.             resell = 800
  185.         ElseIf itemID = 11 Then
  186.             itemName = "Steel Cap"
  187.             itemLVLReq = 6
  188.             hmagdef = 3
  189.             hmagevd = 7
  190.             hgan = 1
  191.             hani = 1
  192.             hrai = 1
  193.             hrue = 1
  194.             hjuk = 1
  195.             hvak = 1
  196.             cost = 800
  197.             resell = 400
  198.         ElseIf itemID = 12 Then
  199.             itemName = "Newt Necklace"
  200.             itemLVLReq = 21
  201.             hmagdef = 3
  202.             hmagevd = 10
  203.             hgan = 2
  204.             hani = 2
  205.             hrai = 2
  206.             hjuk = 2
  207.             hvak = 4
  208.             cost = 2000
  209.             resell = 1000
  210.         ElseIf itemID = 13 Then
  211.             itemName = "Scarab earring"
  212.             itemLVLReq = 26
  213.             hmagdef = 3
  214.             hmagevd = 11
  215.             hani = 2
  216.             hrai = 2
  217.             hrue = 2
  218.             hjuk = 4
  219.             hvak = 2
  220.             cost = 2400
  221.             resell = 1200
  222.         ElseIf itemID = 14 Then
  223.             itemName = "Thunder Torque"
  224.             itemLVLReq = 31
  225.             hmagdef = 3
  226.             hmagevd = 12
  227.             hgan = 2
  228.             hrai = 4
  229.             hrue = 2
  230.             hjuk = 2
  231.             hvak = 2
  232.             cost = 2800
  233.             resell = 1400
  234.         ElseIf itemID = 15 Then
  235.             itemName = "Bat Earrings"
  236.             itemLVLReq = 36
  237.             hacc = -2
  238.             hdef = 1
  239.             hevd = -2
  240.             hmagdef = 4
  241.             hmagevd = 12
  242.             hgan = 2
  243.             hani = 4
  244.             hrue = 2
  245.             hjuk = 2
  246.             hvak = 2
  247.             cost = 3200
  248.             resell = 1600
  249.         ElseIf itemID = 16 Then
  250.             itemName = "gold Necklace"
  251.             itemLVLReq = 41
  252.             hacc = -3
  253.             hdef = 2
  254.             hevd = -4
  255.             hmagacc = 1
  256.             hmagdef = 4
  257.             hmagevd = 13
  258.             hgan = 1
  259.             hani = 1
  260.             hrue = 1
  261.             hjuk = 1
  262.             hvak = 1
  263.             hrai = 1
  264.             cost = 3600
  265.             resell = 1800
  266.         ElseIf itemID = 17 Then
  267.             itemName = "War Headband"
  268.             itemLVLReq = 46
  269.             hacc = -4
  270.             hdef = 1
  271.             hevd = -7
  272.             hmagacc = 1
  273.             hmagdef = 5
  274.             hmagevd = 13
  275.             hgan = 1
  276.             hani = 1
  277.             hrue = 1
  278.             hjuk = 1
  279.             hvak = 1
  280.             hrai = 1
  281.             cost = 4000
  282.             resell = 2000
  283.         ElseIf itemID = 18 Then
  284.             itemName = "Imp Earrings"
  285.             itemLVLReq = 51
  286.             hacc = -5
  287.             hdef = 2
  288.             hevd = -5
  289.             hmagacc = 1
  290.             hmagdef = 5
  291.             hmagevd = 14
  292.             hgan = 2
  293.             hani = 2
  294.             hrue = 2
  295.             hjuk = 2
  296.             hvak = 2
  297.             hrai = 2
  298.             cost = 4400
  299.             resell = 2200
  300.         ElseIf itemID = 101 Then 'Boots
  301.            itemName = "Sandals"
  302.             itemLVLReq = 1
  303.             bdef = 1
  304.         ElseIf itemID = 102 Then
  305.             itemName = "Safety Shoes"
  306.             itemLVLReq = 2
  307.             bdef = 1
  308.             bevd = 1
  309.             bmagdef = 1
  310.             bmagevd = 1
  311.             bgan = 1
  312.             bani = 1
  313.             brai = 1
  314.             brue = 1
  315.             bvak = 1
  316.             bjuk = 1
  317.         ElseIf itemID = 103 Then
  318.             itemName = "Used Greaves"
  319.             itemLVLReq = 3
  320.             bdef = 2
  321.             bevd = 6
  322.             bgan = 1
  323.             bani = 1
  324.             brai = 1
  325.             brue = 1
  326.             bvak = 1
  327.             bjuk = 1
  328.         ElseIf itemID = 104 Then
  329.             itemName = "Mountain Boots"
  330.             itemLVLReq = 12
  331.             bdef = 2
  332.             bevd = 3
  333.             bmagdef = 2
  334.             bmagevd = 3
  335.             bgan = 4
  336.             bani = 1
  337.             brai = 1
  338.             brue = 1
  339.             bvak = 1
  340.             bjuk = 1
  341.         ElseIf itemID = 105 Then
  342.             itemName = "Snow Panther"
  343.             itemLVLReq = 17
  344.             bdef = 2
  345.             bevd = 4
  346.             bmagdef = 2
  347.             bmagevd = 4
  348.             bgan = 2
  349.             bani = 2
  350.             brai = 2
  351.             brue = 4
  352.             bjuk = 2
  353.         ElseIf itemID = 106 Then
  354.             itemName = "Ceramic Anklet"
  355.             itemLVLReq = 11
  356.             bmagdef = 3
  357.             bmagevd = 8
  358.             bgan = 1
  359.             bani = 1
  360.             brai = 1
  361.             brue = 1
  362.             bvak = 1
  363.             bjuk = 1
  364.         ElseIf itemID = 107 Then
  365.             itemName = "Mountain Guard"
  366.             itemLVLReq = 12
  367.             bdef = 3
  368.             bevd = 8
  369.             bgan = 4
  370.             bani = 2
  371.             brai = 2
  372.             brue = 2
  373.             bvak = 2
  374.         ElseIf itemID = 108 Then
  375.             itemName = "Iron Anklet"
  376.             itemLVLReq = 21
  377.             bmagdef = 3
  378.             bmagevd = 10
  379.             bgan = 2
  380.             bani = 2
  381.             brai = 2
  382.             bvak = 4
  383.             bjuk = 2
  384.         ElseIf itemID = 109 Then
  385.             itemName = "Aqua Guard"
  386.             itemLVLReq = 18
  387.             bdef = 4
  388.             bevd = 9
  389.             bmagdef = 1
  390.             bmagevd = 1
  391.             bgan = 2
  392.             bani = 2
  393.             brai = 2
  394.             brue = 4
  395.             bvak = 2
  396.         ElseIf itemID = 201 Then 'Armor
  397.            itemName = "Leather Coat"
  398.             itemLVLReq = 1
  399.             amagdef = 2
  400.             amagevd = 6
  401.             agan = 1
  402.             aani = 1
  403.             arai = 1
  404.             arue = 1
  405.             avak = 1
  406.             ajuk = 1
  407.         ElseIf itemID = 202 Then
  408.             itemName = "Leather Armour"
  409.             itemLVLReq = 2
  410.             adef = 1
  411.             aevd = 1
  412.             amagdef = 1
  413.             amagevd = 1
  414.             agan = 1
  415.             aani = 1
  416.             arai = 1
  417.             arue = 1
  418.             avak = 1
  419.             ajuk = 1
  420.         ElseIf itemID = 203 Then
  421.             itemName = "Brigandine"
  422.             itemLVLReq = 2
  423.             adef = 2
  424.             aevd = 6
  425.             agan = 1
  426.             aani = 1
  427.             arai = 1
  428.             arue = 1
  429.             avak = 1
  430.             ajuk = 1
  431.         ElseIf itemID = 204 Then
  432.             itemName = "Firedrake Mail"
  433.             itemLVLReq = 22
  434.             adef = 2
  435.             aevd = 5
  436.             amagdef = 2
  437.             amagevd = 5
  438.             agan = 2
  439.             aani = 2
  440.             arai = 2
  441.             avak = 4
  442.             ajuk = 2
  443.         ElseIf itemID = 205 Then
  444.             itemName = "Grand Armour"
  445.             itemLVLReq = 13
  446.             adef = 3
  447.             aevd = 8
  448.             agan = 4
  449.             aani = 2
  450.             arai = 2
  451.             avak = 2
  452.         ElseIf itemID = 206 Then
  453.             itemName = "Hiking Gear"
  454.             itemLVLReq = 11
  455.             amagdef = 3
  456.             amagevd = 8
  457.             agan = 1
  458.             aani = 1
  459.             arai = 1
  460.             arue = 1
  461.             avak = 1
  462.             ajuk = 1
  463.         ElseIf itemID = 207 Then
  464.             itemName = "Thunder Cloak"
  465.             itemLVLReq = 31
  466.             amagdef = 3
  467.             amagevd = 12
  468.             agan = 2
  469.             arai = 4
  470.             arue = 2
  471.             avak = 2
  472.             ajuk = 2
  473.         ElseIf itemID = 208 Then
  474.             itemName = "Wyrm Hide"
  475.             itemLVLReq = 12
  476.             adef = 2
  477.             aevd = 3
  478.             amagdef = 2
  479.             amagevd = 3
  480.             agan = 4
  481.             arai = 1
  482.             aani = 1
  483.             arue = 1
  484.             avak = 1
  485.             ajuk = 1
  486.         ElseIf itemID = 209 Then
  487.             itemName = "Winter Coat"
  488.             itemLVLReq = 16
  489.             amagdef = 3
  490.             amagevd = 9
  491.             agan = 2
  492.             arai = 2
  493.             arue = 4
  494.             aani = 2
  495.             ajuk = 2
  496.         ElseIf itemID = 210 Then
  497.             itemName = "Firedrake Mail"
  498.             itemLVLReq = 22
  499.             adef = 2
  500.             aevd = 5
  501.             amagdef = 2
  502.             amagevd = 5
  503.             agan = 2
  504.             arai = 2
  505.             aani = 2
  506.             avak = 4
  507.             ajuk = 2
  508.         ElseIf itemID = 301 Then 'Gloves
  509.            itemName = "Wrist Band"
  510.             itemLVLReq = 1
  511.             gmagdef = 2
  512.             gmagevd = 6
  513.             ggan = 1
  514.             gani = 1
  515.             grai = 1
  516.             grue = 1
  517.             gvak = 1
  518.             gjuk = 1
  519.         ElseIf itemID = 302 Then
  520.             itemName = "Leather Gloves"
  521.             itemLVLReq = 2
  522.             gdef = 1
  523.             gevd = 1
  524.             gmagdef = 1
  525.             gmagevd = 1
  526.             ggan = 1
  527.             gani = 1
  528.             grai = 1
  529.             grue = 1
  530.             gvak = 1
  531.             gjuk = 1
  532.         ElseIf itemID = 303 Then
  533.             itemName = "Rusted Hands"
  534.             itemLVLReq = 3
  535.             gdef = 2
  536.             gevd = 6
  537.             ggan = 1
  538.             gani = 1
  539.             grai = 1
  540.             grue = 1
  541.             gvak = 1
  542.             gjuk = 1
  543.         ElseIf itemID = 304 Then
  544.             itemName = "Miner's Gloves"
  545.             itemLVLReq = 12
  546.             gdef = 2
  547.             gevd = 3
  548.             gmagdef = 2
  549.             gmagevd = 3
  550.             ggan = 4
  551.             gani = 1
  552.             grai = 1
  553.             grue = 1
  554.             gvak = 1
  555.             gjuk = 1
  556.         ElseIf itemID = 305 Then
  557.             itemName = "Hands of Strom"
  558.             itemLVLReq = 33
  559.             gdef = 5
  560.             gevd = 11
  561.             gmagdef = 2
  562.             gmagevd = 1
  563.             ggan = 2
  564.             grai = 4
  565.             grue = 2
  566.             gvak = 2
  567.             gjuk = 2
  568.         ElseIf itemID = 306 Then
  569.             itemName = "Storm Bracer"
  570.             itemLVLReq = 31
  571.             gmagdef = 3
  572.             gmagevd = 12
  573.             ggan = 2
  574.             grai = 4
  575.             grue = 2
  576.             gvak = 2
  577.             gjuk = 2
  578.         ElseIf itemID = 307 Then
  579.             itemName = "Silver Hands"
  580.             itemLVLReq = 8
  581.             gdef = 3
  582.             gevd = 7
  583.             ggan = 1
  584.             grai = 1
  585.             grue = 1
  586.             gvak = 1
  587.             gjuk = 1
  588.             gani = 1
  589.         ElseIf itemID = 401 Then 'Consumables
  590.            itemName = "Small Health Potion"
  591.             itemLVLReq = 1
  592.             cost = 25
  593.             resell = 5
  594.         ElseIf itemID = 402 Then
  595.             itemName = "Small Health Potion x2"
  596.             itemLVLReq = 1
  597.         ElseIf itemID = 403 Then
  598.             itemName = "Small Health Potion x3"
  599.             itemLVLReq = 1
  600.         ElseIf itemID = 404 Then
  601.             itemName = "Small Health Potion x4"
  602.             itemLVLReq = 1
  603.         ElseIf itemID = 405 Then
  604.             itemName = "Small Health Potion x5"
  605.             itemLVLReq = 1
  606.         ElseIf itemID = 406 Then
  607.             itemName = "Small Health Potion x6"
  608.             itemLVLReq = 1
  609.         ElseIf itemID = 407 Then
  610.             itemName = "Small Health Potion x7"
  611.             itemLVLReq = 1
  612.         ElseIf itemID = 408 Then
  613.             itemName = "Small Health Potion x8"
  614.             itemLVLReq = 1
  615.         ElseIf itemID = 409 Then
  616.             itemName = "Small Health Potion x9"
  617.             itemLVLReq = 1
  618.         ElseIf itemID = 410 Then
  619.             itemName = "Small Health Potion x10"
  620.             itemLVLReq = 1
  621.         ElseIf itemID = 411 Then
  622.             itemName = "Medium Health Potion"
  623.             itemLVLReq = 30
  624.             cost = 50
  625.             resell = 20
  626.         ElseIf itemID = 412 Then
  627.             itemName = "Medium Health Potion x2"
  628.             itemLVLReq = 30
  629.         ElseIf itemID = 413 Then
  630.             itemName = "Medium Health Potion x3"
  631.             itemLVLReq = 30
  632.         ElseIf itemID = 414 Then
  633.             itemName = "Medium Health Potion x4"
  634.             itemLVLReq = 30
  635.         ElseIf itemID = 415 Then
  636.             itemName = "Medium Health Potion x5"
  637.             itemLVLReq = 30
  638.         ElseIf itemID = 416 Then
  639.             itemName = "Medium Health Potion x6"
  640.             itemLVLReq = 30
  641.         ElseIf itemID = 417 Then
  642.             itemName = "Medium Health Potion x7"
  643.             itemLVLReq = 30
  644.         ElseIf itemID = 418 Then
  645.             itemName = "Medium Health Potion x8"
  646.             itemLVLReq = 30
  647.         ElseIf itemID = 419 Then
  648.             itemName = "Medium Health Potion x9"
  649.             itemLVLReq = 30
  650.         ElseIf itemID = 420 Then
  651.             itemName = "Medium Health Potion x10"
  652.             itemLVLReq = 30
  653.         ElseIf itemID = 421 Then
  654.             itemName = "Large Health Potion"
  655.             itemLVLReq = 50
  656.             cost = 100
  657.             resell = 45
  658.         ElseIf itemID = 422 Then
  659.             itemName = "Large Health Potion x2"
  660.             itemLVLReq = 50
  661.         ElseIf itemID = 423 Then
  662.             itemName = "Large Health Potion x3"
  663.             itemLVLReq = 50
  664.         ElseIf itemID = 424 Then
  665.             itemName = "Large Health Potion x4"
  666.             itemLVLReq = 50
  667.         ElseIf itemID = 425 Then
  668.             itemName = "Large Health Potion x5"
  669.             itemLVLReq = 50
  670.         ElseIf itemID = 426 Then
  671.             itemName = "Large Health Potion x6"
  672.             itemLVLReq = 50
  673.         ElseIf itemID = 427 Then
  674.             itemName = "Large Health Potion x7"
  675.             itemLVLReq = 50
  676.         ElseIf itemID = 428 Then
  677.             itemName = "Large Health Potion x8"
  678.             itemLVLReq = 50
  679.         ElseIf itemID = 429 Then
  680.             itemName = "Large Health Potion x9"
  681.             itemLVLReq = 50
  682.         ElseIf itemID = 430 Then
  683.             itemName = "Large Health Potion x10"
  684.             itemLVLReq = 50
  685.         ElseIf itemID = 501 Then
  686.             itemName = "Small Skill Potion"
  687.             itemLVLReq = 1
  688.             cost = 35
  689.             resell = 10
  690.         ElseIf itemID = 502 Then
  691.             itemName = "Small Skill Potion x2"
  692.             itemLVLReq = 1
  693.         ElseIf itemID = 503 Then
  694.             itemName = "Small Skill Potion x3"
  695.             itemLVLReq = 1
  696.         ElseIf itemID = 504 Then
  697.             itemName = "Small Skill Potion x4"
  698.             itemLVLReq = 1
  699.         ElseIf itemID = 505 Then
  700.             itemName = "Small Skill Potion x5"
  701.             itemLVLReq = 1
  702.         ElseIf itemID = 506 Then
  703.             itemName = "Small Skill Potion x6"
  704.             itemLVLReq = 1
  705.         ElseIf itemID = 507 Then
  706.             itemName = "Small Skill Potion x7"
  707.             itemLVLReq = 1
  708.         ElseIf itemID = 508 Then
  709.             itemName = "Small Skill Potion x8"
  710.             itemLVLReq = 1
  711.         ElseIf itemID = 509 Then
  712.             itemName = "Small Skill Potion x9"
  713.             itemLVLReq = 1
  714.         ElseIf itemID = 510 Then
  715.             itemName = "Small Skill Potion x10"
  716.             itemLVLReq = 1
  717.         ElseIf itemID = 511 Then
  718.             itemName = "Medium Skill Potion"
  719.             itemLVLReq = 30
  720.             cost = 70
  721.             resell = 30
  722.         ElseIf itemID = 512 Then
  723.             itemName = "Medium Skill Potion x2"
  724.             itemLVLReq = 30
  725.         ElseIf itemID = 513 Then
  726.             itemName = "Medium Skill Potion x3"
  727.             itemLVLReq = 30
  728.         ElseIf itemID = 514 Then
  729.             itemName = "Medium Skill Potion x4"
  730.             itemLVLReq = 30
  731.         ElseIf itemID = 515 Then
  732.             itemName = "Medium Skill Potion x5"
  733.             itemLVLReq = 30
  734.         ElseIf itemID = 516 Then
  735.             itemName = "Medium Skill Potion x6"
  736.             itemLVLReq = 30
  737.         ElseIf itemID = 517 Then
  738.             itemName = "Medium Skill Potion x7"
  739.             itemLVLReq = 30
  740.         ElseIf itemID = 518 Then
  741.             itemName = "Medium Skill Potion x8"
  742.             itemLVLReq = 30
  743.         ElseIf itemID = 519 Then
  744.             itemName = "Medium Skill Potion x9"
  745.             itemLVLReq = 30
  746.         ElseIf itemID = 520 Then
  747.             itemName = "Medium Skill Potion x10"
  748.             itemLVLReq = 30
  749.         ElseIf itemID = 521 Then
  750.             itemName = "Large Skill Potion"
  751.             cost = 140
  752.             resell = 55
  753.         ElseIf itemID = 522 Then
  754.             itemName = "Large Skill Potion x2"
  755.             itemLVLReq = 50
  756.         ElseIf itemID = 523 Then
  757.             itemName = "Large Skill Potion x3"
  758.             itemLVLReq = 50
  759.         ElseIf itemID = 524 Then
  760.             itemName = "Large Skill Potion x4"
  761.             itemLVLReq = 50
  762.         ElseIf itemID = 525 Then
  763.             itemName = "Large Skill Potion x5"
  764.             itemLVLReq = 50
  765.         ElseIf itemID = 526 Then
  766.             itemName = "Large Skill Potion x6"
  767.             itemLVLReq = 50
  768.         ElseIf itemID = 527 Then
  769.             itemName = "Large Skill Potion x7"
  770.             itemLVLReq = 50
  771.         ElseIf itemID = 528 Then
  772.             itemName = "Large Skill Potion x8"
  773.             itemLVLReq = 50
  774.         ElseIf itemID = 529 Then
  775.             itemName = "Large Skill Potion x9"
  776.             itemLVLReq = 50
  777.         ElseIf itemID = 530 Then
  778.             itemName = "Large Skill Potion x10"
  779.             itemLVLReq = 50
  780.         ElseIf itemID = 2001 Then
  781.             itemName = "Basic Sword"
  782.             itemLVLReq = 1
  783.             watk = 2
  784.             wacc = 1
  785.             cost = 300
  786.             resell = 150
  787.         ElseIf itemID = 2002 Then
  788.             itemName = "Brave Sword"
  789.             itemLVLReq = 1
  790.             watk = 4
  791.             wacc = 2
  792.             cost = 500
  793.             resell = 250
  794.         ElseIf itemID = 2003 Then
  795.             itemName = "8 Phase Sword"
  796.             itemLVLReq = 2
  797.             watk = 5
  798.             wacc = 4
  799.             cost = 600
  800.             resell = 300
  801.         ElseIf itemID = 2004 Then
  802.             itemName = "Strange Blade"
  803.             itemLVLReq = 4
  804.             watk = 5
  805.             wacc = 6
  806.             cost = 1200
  807.             resell = 600
  808.         ElseIf itemID = 2005 Then
  809.             itemName = "Executioner"
  810.             itemLVLReq = 5
  811.             watk = 6
  812.             wacc = 7
  813.             cost = 1400
  814.             resell = 700
  815.         ElseIf itemID = 2006 Then
  816.             itemName = "Corpse Blade"
  817.             itemLVLReq = 6
  818.             watk = 8
  819.             wacc = 9
  820.             cost = 1800
  821.             resell = 900
  822.         ElseIf itemID = 2007 Then
  823.             itemName = "Oval Sword"
  824.             itemLVLReq = 7
  825.             watk = 9
  826.             wacc = 10
  827.             cost = 2000
  828.             resell = 1000
  829.         ElseIf itemID = 2008 Then
  830.             itemName = "Houraiken"
  831.             itemLVLReq = 10
  832.             watk = 12
  833.             wacc = 15
  834.             cost = 3000
  835.             resell = 1500
  836.         ElseIf itemID = 2009 Then
  837.             itemName = "Guillotine"
  838.             itemLVLReq = 11
  839.             watk = 13
  840.             wacc = 16
  841.             cost = 3200
  842.             resell = 1600
  843.         ElseIf itemID = 2010 Then
  844.             itemName = "Patriot"
  845.             itemLVLReq = 15
  846.             watk = 18
  847.             wacc = 16
  848.             wgan = 2
  849.             wrai = 2
  850.             wjuk = 2
  851.             wani = 2
  852.             wrue = 2
  853.             wvak = 2
  854.             cost = 4200
  855.             resell = 2100
  856.         ElseIf itemID = 2011 Then
  857.             itemName = "Siegfried"
  858.             itemLVLReq = 16
  859.             watk = 19
  860.             wacc = 16
  861.             wgan = 3
  862.             wrai = 3
  863.             wjuk = 3
  864.             wani = 3
  865.             wrue = 3
  866.             wvak = 3
  867.             cost = 4400
  868.             resell = 2200
  869.         ElseIf itemID = 2012 Then
  870.             itemName = "Comet Blade"
  871.             itemLVLReq = 18
  872.             watk = 20
  873.             wacc = 18
  874.             cost = 5200
  875.             resell = 2600
  876.         ElseIf itemID = 2013 Then
  877.             itemName = "Lions Blade"
  878.             itemLVLReq = 21
  879.             watk = 22
  880.             wacc = 16
  881.             wmagatk = 2
  882.             wmagacc = 2
  883.             wgan = 4
  884.             wrai = 4
  885.             wjuk = 4
  886.             wani = 4
  887.             wrue = 4
  888.             wvak = 4
  889.             cost = 6000
  890.             resell = 3000
  891.         ElseIf itemID = 2014 Then
  892.             itemName = "Sword"
  893.             itemLVLReq = 23
  894.             watk = 23
  895.             wacc = 10
  896.             wmagatk = 5
  897.             wmagacc = 10
  898.             wrue = 20
  899.             wvak = -20
  900.             cost = 6400
  901.             resell = 3200
  902.         ElseIf itemID = 2015 Then
  903.             itemName = "Rondo"
  904.             itemLVLReq = 2
  905.             watk = 5
  906.             wacc = 3
  907.             wgan = 5
  908.             wjuk = -5
  909.             cost = 700
  910.             resell = 350
  911.         ElseIf itemID = 2016 Then
  912.             itemName = "Gakaku"
  913.             itemLVLReq = 3
  914.             watk = 5
  915.             wacc = 5
  916.             wrue = -5
  917.             wvak = 5
  918.             cost = 1000
  919.             resell = 500
  920.         ElseIf itemID = 2017 Then
  921.             itemName = "Unicorn Blade"
  922.             itemLVLReq = 5
  923.             watk = 7
  924.             wacc = 8
  925.             wrai = -5
  926.             wani = 5
  927.             cost = 1600
  928.             resell = 800
  929.         ElseIf itemID = 2018 Then
  930.             itemName = "Fugaku"
  931.             itemLVLReq = 8
  932.             watk = 11
  933.             wacc = 12
  934.             wgan = 7
  935.             wjuk = -7
  936.             cost = 2200
  937.             resell = 1100
  938.         ElseIf itemID = 2019 Then
  939.             itemName = "Ensui"
  940.             itemLVLReq = 9
  941.             watk = 11
  942.             wacc = 13
  943.             wrue = 7
  944.             wvak = -7
  945.             cost = 2600
  946.             resell = 1300
  947.         ElseIf itemID = 2020 Then
  948.             itemName = "Komura"
  949.             itemLVLReq = 10
  950.             watk = 11
  951.             wacc = 14
  952.             wrue = -7
  953.             wvak = 7
  954.             cost = 2800
  955.             resell = 1400
  956.         ElseIf itemID = 2021 Then
  957.             itemName = "Dogmans Sword"
  958.             itemLVLReq = 12
  959.             watk = 14
  960.             wacc = 17
  961.             wrue = -7
  962.             wvak = 7
  963.             cost = 3400
  964.             resell = 1700
  965.         ElseIf itemID = 2022 Then
  966.             itemName = "6 Side Blade"
  967.             itemLVLReq = 20
  968.             watk = 21
  969.             wacc = 14
  970.             wmagatk = 1
  971.             wmagacc = 2
  972.             wgan = 3
  973.             wrai = 3
  974.             wjuk = 3
  975.             wani = 3
  976.             wrue = 3
  977.             wvak = 3
  978.             cost = 5600
  979.             resell = 2800
  980.         ElseIf itemID = 2023 Then
  981.             itemName = "Matoi"
  982.             itemLVLReq = 23
  983.             watk = 23
  984.             wacc = 13
  985.             wmagatk = 2
  986.             wmagacc = 2
  987.             wgan = 12
  988.             wjuk = -12
  989.             cost = 6400
  990.             resell = 3200
  991.         ElseIf itemID = 2024 Then
  992.             itemName = "Heavenly Sword"
  993.             itemLVLReq = 32
  994.             watk = 23
  995.             wacc = 13
  996.             wmagatk = 5
  997.             wmagacc = 5
  998.             wrue = 12
  999.             wvak = -12
  1000.             cost = 8000
  1001.             resell = 4000
  1002.         ElseIf itemID = 2025 Then
  1003.             itemName = "Nataku"
  1004.             itemLVLReq = 34
  1005.             watk = 23
  1006.             wacc = 14
  1007.             wmagatk = 2
  1008.             wmagacc = 2
  1009.             wrue = 12
  1010.             wvak = -5
  1011.             cost = 8400
  1012.             resell = 4200
  1013.         ElseIf itemID = 2026 Then
  1014.             itemName = "Soujin"
  1015.             itemLVLReq = 35
  1016.             watk = 24
  1017.             wacc = 15
  1018.             wmagatk = 2
  1019.             wmagacc = 2
  1020.             wrue = -5
  1021.             wvak = 12
  1022.             cost = 8600
  1023.             resell = 4300
  1024.         ElseIf itemID = 2027 Then
  1025.             itemName = "Bloody Pain"
  1026.             itemLVLReq = 37
  1027.             watk = 24
  1028.             wacc = 12
  1029.             wmagatk = 2
  1030.             wmagacc = 2
  1031.             wvak = 6
  1032.             wani = 6
  1033.             cost = 9000
  1034.             resell = 4500
  1035.         ElseIf itemID = 2028 Then
  1036.             itemName = "Oberon"
  1037.             itemLVLReq = 43
  1038.             watk = 26
  1039.             wacc = 12
  1040.             wmagatk = 3
  1041.             wmagacc = 3
  1042.             wgan = 3
  1043.             wrue = 3
  1044.             wvak = 3
  1045.             wjuk = 3
  1046.             wrai = 3
  1047.             wani = 3
  1048.             cost = 10200
  1049.             resell = 5100
  1050.         ElseIf itemID = 2029 Then
  1051.             itemName = "Mizuchi"
  1052.             itemLVLReq = 2
  1053.             watk = 5
  1054.             wacc = 4
  1055.             wrue = 5
  1056.             wvak = -5
  1057.             cost = 800
  1058.             resell = 400
  1059.         ElseIf itemID = 2030 Then
  1060.             itemName = "Gruntys Sword"
  1061.             itemLVLReq = 8
  1062.             watk = 10
  1063.             wacc = 11
  1064.             cost = 2400
  1065.             resell = 1200
  1066.         ElseIf itemID = 2031 Then
  1067.             itemName = "Souleater"
  1068.             itemLVLReq = 10
  1069.             watk = 12
  1070.             wacc = 15
  1071.             cost = 3000
  1072.             resell = 1500
  1073.         ElseIf itemID = 2032 Then
  1074.             itemName = "Singing Blade"
  1075.             itemLVLReq = 11
  1076.             watk = 13
  1077.             wacc = 16
  1078.             cost = 3200
  1079.             resell = 1600
  1080.         ElseIf itemID = 2033 Then
  1081.             itemName = "Glitter"
  1082.             itemLVLReq = 13
  1083.             watk = 16
  1084.             wacc = 19
  1085.             wmagatk = 10
  1086.             wmagacc = 10
  1087.             cost = 3800
  1088.             resell = 1900
  1089.         ElseIf itemID = 2034 Then
  1090.             itemName = "Steel Blade"
  1091.             itemLVLReq = 13
  1092.             watk = 15
  1093.             wacc = 23
  1094.             cost = 3600
  1095.             resell = 1800
  1096.         ElseIf itemID = 2035 Then
  1097.             itemName = "Demon Killer"
  1098.             itemLVLReq = 19
  1099.             watk = 20
  1100.             wacc = 19
  1101.             wmagatk = 1
  1102.             wmagacc = 1
  1103.             wrai = -10
  1104.             wani = 10
  1105.             cost = 5400
  1106.             resell = 2700
  1107.         ElseIf itemID = 2036 Then
  1108.             itemName = "Tenkafuubu"
  1109.             itemLVLReq = 40
  1110.             watk = 24
  1111.             wacc = 13
  1112.             wmagatk = 2
  1113.             wmagacc = 2
  1114.             wgan = 3
  1115.             wrue = 3
  1116.             wvak = 3
  1117.             wjuk = 3
  1118.             wrai = 3
  1119.             wani = 3
  1120.             cost = 9600
  1121.             resell = 4800
  1122.         ElseIf itemID = 2037 Then
  1123.             itemName = "Phantom Blade"
  1124.             itemLVLReq = 40
  1125.             watk = 25
  1126.             wacc = 11
  1127.             wmagatk = 3
  1128.             wmagacc = 3
  1129.             wgan = 2
  1130.             wrue = 2
  1131.             wvak = 2
  1132.             wjuk = 2
  1133.             wrai = -5
  1134.             wani = 13
  1135.         ElseIf itemID = 2038 Then
  1136.             itemName = "Rising Sun"
  1137.             itemLVLReq = 42
  1138.             watk = 25
  1139.             wacc = 13
  1140.             wmagatk = 3
  1141.             wmagacc = 3
  1142.             wgan = 2
  1143.             wrue = -5
  1144.             wvak = 13
  1145.             wjuk = 2
  1146.             wrai = 2
  1147.             wani = 2
  1148.         ElseIf itemID = 2039 Then
  1149.             itemName = "Pegasus Comet"
  1150.             itemLVLReq = 48
  1151.             watk = 27
  1152.             wacc = 10
  1153.             wmagatk = 3
  1154.             wmagacc = 3
  1155.             wgan = 4
  1156.             wrue = 4
  1157.             wvak = 4
  1158.             wjuk = 4
  1159.             wrai = 4
  1160.             wani = 4
  1161.         ElseIf itemID = 2040 Then
  1162.             itemName = "Seventh Seal"
  1163.             itemLVLReq = 50
  1164.             watk = 27
  1165.             wacc = 12
  1166.             wmagatk = 3
  1167.             wmagacc = 3
  1168.             wgan = 5
  1169.             wrue = 5
  1170.             wvak = 5
  1171.             wjuk = 5
  1172.             wrai = 5
  1173.             wani = 5
  1174.         ElseIf itemID = 2041 Then
  1175.             itemName = "Banished Blade"
  1176.             itemLVLReq = 44
  1177.             watk = 26
  1178.             wacc = 13
  1179.             wmagatk = 3
  1180.             wmagacc = 3
  1181.             wgan = 3
  1182.             wrue = 3
  1183.             wvak = 3
  1184.             wjuk = 3
  1185.             wrai = 3
  1186.             wani = 3
  1187.         ElseIf itemID = 2042 Then
  1188.             itemName = "Fair Soul"
  1189.             itemLVLReq = 52
  1190.             watk = 28
  1191.             wacc = 11
  1192.             wmagatk = 3
  1193.             wmagacc = 4
  1194.             wgan = 15
  1195.             wrue = 1
  1196.             wvak = 1
  1197.             wjuk = -5
  1198.             wrai = 1
  1199.             wani = 1
  1200.         ElseIf itemID = 2043 Then
  1201.             itemName = "Stream Sword"
  1202.             itemLVLReq = 55
  1203.             watk = 28
  1204.             wacc = 12
  1205.             wmagatk = 4
  1206.             wmagacc = 4
  1207.             wgan = 2
  1208.             wrue = 15
  1209.             wvak = -5
  1210.             wjuk = 2
  1211.             wrai = 2
  1212.             wani = 2
  1213.         ElseIf itemID = 2044 Then 'Rare Blade Master Weapons
  1214.            itemName = "Phoenixs Wing"
  1215.             itemLVLReq = 13
  1216.             watk = 16
  1217.             wacc = 19
  1218.             wmagatk = 10
  1219.             wmagacc = 10
  1220.             cost = 4000
  1221.             resell = 2000
  1222.         ElseIf itemID = 2045 Then
  1223.             itemName = "Seal Sword"
  1224.             itemLVLReq = 14
  1225.             watk = 17
  1226.             wacc = 20
  1227.             wgan = 3
  1228.             wrue = 3
  1229.             wvak = 3
  1230.             wjuk = 3
  1231.             wrai = 3
  1232.             wani = 3
  1233.             cost = 4000
  1234.             resell = 2000
  1235.         ElseIf itemID = 2046 Then
  1236.             itemName = "Jinsaran"
  1237.             itemLVLReq = 14
  1238.             watk = 18
  1239.             wacc = 22
  1240.             wmagatk = -10
  1241.             wmagacc = -10
  1242.             wrue = -15
  1243.             wvak = 15
  1244.             cost = 4000
  1245.             resell = 2000
  1246.         ElseIf itemID = 2047 Then
  1247.             itemName = "7 Star Sword"
  1248.             itemLVLReq = 21
  1249.             watk = 21
  1250.             wacc = 15
  1251.             wmagatk = 2
  1252.             wmagacc = 2
  1253.             wgan = 4
  1254.             wrue = 4
  1255.             wvak = 4
  1256.             wjuk = 4
  1257.             wrai = 4
  1258.             wani = 4
  1259.             cost = 5800
  1260.             resell = 2900
  1261.         ElseIf itemID = 2048 Then
  1262.             itemName = "Menhir Sword"
  1263.             itemLVLReq = 22
  1264.             watk = 22
  1265.             wacc = 17
  1266.             wmagatk = 2
  1267.             wmagacc = 2
  1268.             wgan = 5
  1269.             wrue = 5
  1270.             wvak = 5
  1271.             wjuk = 5
  1272.             wrai = 5
  1273.             wani = 5
  1274.             cost = 6200
  1275.             resell = 3100
  1276.         ElseIf itemID = 2049 Then
  1277.             itemName = "Bureido"
  1278.             itemLVLReq = 23
  1279.             watk = 24
  1280.             wacc = 14
  1281.             wdef = -15
  1282.             cost = 6500
  1283.             resell = 3250
  1284.         ElseIf itemID = 2050 Then
  1285.             itemName = "SKs Sword"
  1286.             itemLVLReq = 29
  1287.             watk = 25
  1288.             wacc = 11
  1289.             wmagatk = 2
  1290.             wmagacc = 2
  1291.             wgan = 1
  1292.             wrue = 1
  1293.             wvak = 1
  1294.             wjuk = 1
  1295.             wrai = 1
  1296.             wani = 1
  1297.         ElseIf itemID = 2051 Then
  1298.             itemName = "Sorrow"
  1299.             itemLVLReq = 40
  1300.             watk = -30
  1301.             wacc = 30
  1302.             wmagatk = -30
  1303.             wmagacc = 30
  1304.         ElseIf itemID = 2052 Then
  1305.             itemName = "Gimme Life"
  1306.             itemLVLReq = 51
  1307.             watk = 27
  1308.             wacc = 6
  1309.             wmagatk = 6
  1310.             wmagacc = 6
  1311.             wgan = 15
  1312.             wrue = 3
  1313.             wvak = 3
  1314.             wjuk = -5
  1315.             wrai = 3
  1316.             wani = 2
  1317.         ElseIf itemID = 2053 Then
  1318.             itemName = "Bears Sword"
  1319.             itemLVLReq = 53
  1320.             watk = 28
  1321.             wdef = 6
  1322.             wacc = 15
  1323.             wmagatk = 4
  1324.             wmagacc = 6
  1325.             wgan = 2
  1326.             wrue = 2
  1327.             wvak = 2
  1328.             wjuk = 2
  1329.             wrai = 2
  1330.             wani = 2
  1331.         ElseIf itemID = 2054 Then
  1332.             itemName = "Phoenixs Fire"
  1333.             itemLVLReq = 55
  1334.             watk = 29
  1335.             wacc = 15
  1336.             wevd = -10
  1337.             wmagatk = 2
  1338.             wmagacc = 2
  1339.             wgan = 4
  1340.             wrue = 4
  1341.             wvak = 4
  1342.             wjuk = 4
  1343.             wrai = 4
  1344.             wani = 4
  1345.         ElseIf itemID = 2055 Then
  1346.             itemName = "Chaos Sword"
  1347.         ElseIf itemID = 2056 Then 'Event and Quest Blade Master Weapons
  1348.            itemName = "Ends of Earth"
  1349.             itemLVLReq = 11
  1350.             watk = 30
  1351.             wacc = 28
  1352.         ElseIf itemID = 2057 Then
  1353.             itemName = "Heaven & Earth"
  1354.             itemLVLReq = 16
  1355.             watk = 40
  1356.             wdef = 3
  1357.             wacc = 35
  1358.             wevd = -5
  1359.             wmagdef = 10
  1360.             wmagevd = 10
  1361.             wgan = 15
  1362.             wani = -15
  1363.             resell = 2300
  1364.         ElseIf itemID = 2058 Then
  1365.             itemName = "Lake & Sea"
  1366.             itemLVLReq = 17
  1367.             watk = 35
  1368.             wdef = 1
  1369.             wacc = 30
  1370.             wevd = -10
  1371.             wmagatk = 5
  1372.             wmagacc = -5
  1373.             wrue = 20
  1374.             wvak = -20
  1375.             wrai = -20
  1376.             resell = 2400
  1377.         ElseIf itemID = 2059 Then
  1378.             itemName = "Fire & Sky"
  1379.             itemLVLReq = 18
  1380.             watk = 37
  1381.             wdef = 10
  1382.             wacc = 36
  1383.             wevd = 10
  1384.             wmagdef = -50
  1385.             wmagacc = -20
  1386.             wmagevd = -50
  1387.             wrue = -20
  1388.             wvak = 20
  1389.             wrai = 10
  1390.             resell = 2500
  1391.         ElseIf itemID = 2060 Then 'Other
  1392.            itemName = "Honours Breath"
  1393.         ElseIf itemID = 2061 Then
  1394.             itemName = "Scarlet Cross"
  1395.         ElseIf itemID = 2062 Then
  1396.             itemName = "God Slayer"
  1397.         ElseIf itemID = 2063 Then
  1398.             itemName = "Needle Blade"
  1399.         ElseIf itemID = 2064 Then
  1400.             itemName = "Shichiyou"
  1401.         ElseIf itemID = 2065 Then
  1402.             itemName = "Gold Sword"
  1403.         ElseIf itemID = 2066 Then
  1404.             itemName = "Trickster"
  1405.         ElseIf itemID = 2067 Then
  1406.             itemName = "Saturn Sword"
  1407.         ElseIf itemID = 2068 Then
  1408.             itemName = "Mercury Sword"
  1409.         ElseIf itemID = 2069 Then
  1410.             itemName = "Mars Sword"
  1411.         ElseIf itemID = 2070 Then
  1412.             itemName = "Phantom Pain"
  1413.         ElseIf itemID = 2071 Then
  1414.             itemName = "Skysweeper"
  1415.         ElseIf itemID = 2072 Then
  1416.             itemName = "Rugrats Nights"
  1417.         ElseIf itemID = 2073 Then
  1418.             itemName = "Evil Eyes"
  1419.         ElseIf itemID = 2074 Then
  1420.             itemName = "Jormungand"
  1421.         ElseIf itemID = 2075 Then
  1422.             itemName = "Eternity"
  1423.         ElseIf itemID = 1001 Then 'Long Arm Weapons
  1424.            itemName = "Bronze Spear"
  1425.             itemLVLReq = 1
  1426.             watk = 3
  1427.             wacc = 1
  1428.         ElseIf itemID = 1002 Then
  1429.             itemName = "Iron Spear"
  1430.             itemLVLReq = 1
  1431.             watk = 4
  1432.             wacc = 2
  1433.         ElseIf itemID = 1003 Then
  1434.             itemName = "Amazon Spear"
  1435.             itemLVLReq = 2
  1436.             watk = 8
  1437.             wacc = 2
  1438.         ElseIf itemID = 1004 Then
  1439.             itemName = "Relief Lance"
  1440.             itemLVLReq = 2
  1441.             watk = 8
  1442.             wacc = 3
  1443.         ElseIf itemID = 1005 Then
  1444.             itemName = "Water Spear"
  1445.             itemLVLReq = 2
  1446.             watk = 8
  1447.             wacc = 4
  1448.             wrue = 5
  1449.             wvak = -5
  1450.         ElseIf itemID = 1006 Then
  1451.             itemName = "Fire Spear"
  1452.             itemLVLReq = 3
  1453.             watk = 8
  1454.             wacc = 5
  1455.             wrue = -5
  1456.             wvak = 5
  1457.         ElseIf itemID = 1007 Then
  1458.             itemName = "Wooden Spear"
  1459.             itemLVLReq = 4
  1460.             watk = 8
  1461.             wacc = 6
  1462.             wgan = -5
  1463.             wjuk = 5
  1464.         ElseIf itemID = 1008 Then
  1465.             itemName = "Electric Spear"
  1466.             itemLVLReq = 4
  1467.             watk = 8
  1468.             wacc = 6
  1469.             wrai = 5
  1470.             wani = -5
  1471.         ElseIf itemID = 1009 Then
  1472.             itemName = "Glaive"
  1473.             itemLVLReq = 5
  1474.             watk = 8
  1475.             wacc = 8
  1476.         ElseIf itemID = 1010 Then
  1477.             itemName = "Gold Spear"
  1478.             itemLVLReq = 6
  1479.             watk = 13
  1480.             wacc = 9
  1481.         ElseIf itemID = 1011 Then
  1482.             itemName = "Nihonmaru"
  1483.             itemLVLReq = 7
  1484.             watk = 15
  1485.             wacc = 10
  1486.         ElseIf itemID = 1012 Then
  1487.             itemName = "Spear of Spell"
  1488.             itemLVLReq = 7
  1489.             watk = 15
  1490.             wacc = 11
  1491.         ElseIf itemID = 1013 Then
  1492.             itemName = "Bloody Lance"
  1493.             itemLVLReq = 8
  1494.             watk = 17
  1495.             wacc = 12
  1496.             wgan = 3
  1497.             wrue = 3
  1498.             wvak = 3
  1499.             wjuk = 3
  1500.             wrai = 3
  1501.             wani = 3
  1502.         ElseIf itemID = 1014 Then
  1503.             itemName = "Eternal Victor"
  1504.             itemLVLReq = 9
  1505.             watk = 17
  1506.             wacc = 13
  1507.             wgan = 1
  1508.             wrue = 1
  1509.             wvak = 1
  1510.             wjuk = 1
  1511.             wrai = 1
  1512.             wani = 1
  1513.         ElseIf itemID = 1015 Then
  1514.             itemName = "Merman Spear"
  1515.             itemLVLReq = 9
  1516.             watk = 17
  1517.             wacc = 13
  1518.             wrue = 10
  1519.             wvak = -10
  1520.         ElseIf itemID = 3001 Then 'Wave Master Weapons
  1521.            itemName = "Cypress Wand"
  1522.             itemLVLReq = 1
  1523.             watk = 2
  1524.             wacc = 1
  1525.         ElseIf itemID = 3002 Then
  1526.             itemName = "Iron Rod"
  1527.             itemLVLReq = 1
  1528.             wmagatk = 2
  1529.             wmagacc = 2
  1530.         ElseIf itemID = 3003 Then
  1531.             itemName = "Electric Wand"
  1532.             itemLVLReq = 4
  1533.             wmagatk = 4
  1534.             wmagacc = 7
  1535.             wrai = 5
  1536.             wani = -5
  1537.         ElseIf itemID = 3004 Then
  1538.             itemName = "Fire Wand"
  1539.             itemLVLReq = 3
  1540.             wmagatk = 4
  1541.             wmagacc = 5
  1542.             wvak = 5
  1543.             wrue = -5
  1544.         ElseIf itemID = 3005 Then
  1545.             itemName = "Water Wand"
  1546.             itemLVLReq = 2
  1547.             wmagatk = 4
  1548.             wmagacc = 4
  1549.             wrue = 5
  1550.             wvak = -5
  1551.         ElseIf itemID = 4001 Then 'Heavy Axe Weapons
  1552.            itemName = "Hatchet"
  1553.             itemLVLReq = 1
  1554.             watk = 3
  1555.             wacc = 1
  1556.         ElseIf itemID = 4002 Then
  1557.             itemName = "Water Axe"
  1558.             itemLVLReq = 3
  1559.             watk = 5
  1560.             wacc = 2
  1561.             wrue = 5
  1562.             wvak = -5
  1563.         ElseIf itemID = 4003 Then
  1564.             itemName = "Golden Axe"
  1565.             itemLVLReq = 1
  1566.             watk = 1
  1567.         ElseIf itemID = 4004 Then
  1568.             itemName = "Flame Axe"
  1569.             itemLVLReq = 4
  1570.             watk = 5
  1571.             wacc = 3
  1572.         ElseIf itemID = 4005 Then
  1573.             itemName = "Battle Axe"
  1574.             itemLVLReq = 2
  1575.             watk = 5
  1576.             wacc = 1
  1577.             wgan = 5
  1578.             wjuk = -5
  1579.         ElseIf itemID = 5001 Then 'Heavy Blade Weapons
  1580.            itemName = "Steel Blade"
  1581.             itemLVLReq = 1
  1582.             watk = 3
  1583.             wacc = 1
  1584.         ElseIf itemID = 5002 Then
  1585.             itemName = "Kikuichimonji"
  1586.             itemLVLReq = 1
  1587.             watk = 5
  1588.             wacc = 2
  1589.         ElseIf itemID = 5003 Then
  1590.             itemName = "Earth Sword"
  1591.             itemLVLReq = 2
  1592.             watk = 7
  1593.             wacc = 2
  1594.             wgan = 5
  1595.             wjuk = -5
  1596.         ElseIf itemID = 5004 Then
  1597.             itemName = "Slayer"
  1598.             itemLVLReq = 6
  1599.             watk = 8
  1600.             wacc = 5
  1601.         ElseIf itemID = 5005 Then
  1602.             itemName = "Stun Sword"
  1603.             itemLVLReq = 5
  1604.             watk = 7
  1605.             wacc = 6
  1606.             wrai = 5
  1607.             wani = -5
  1608.         ElseIf itemID = 5006 Then
  1609.             itemName = "Green Sword"
  1610.             itemLVLReq = 4
  1611.             watk = 7
  1612.             wacc = 5
  1613.             wjuk = 5
  1614.             wgan = -5
  1615.         ElseIf itemID = 6001 Then 'Twin Blade Weapons
  1616.            itemName = "Amateur Blades"
  1617.             itemLVLReq = 1
  1618.             watk = 2
  1619.             wacc = 1
  1620.             wmagatk = 1
  1621.             wmagacc = 1
  1622.             cost = 400
  1623.             resell = 200
  1624.         ElseIf itemID = 6002 Then
  1625.             itemName = "Phantom Blades"
  1626.             itemLVLReq = 2
  1627.             watk = 4
  1628.             wacc = 3
  1629.             wmagatk = 2
  1630.             wmagacc = 2
  1631.             cost = 800
  1632.             resell = 400
  1633.         ElseIf itemID = 6003 Then
  1634.             itemName = "Assassin"
  1635.             itemLVLReq = 3
  1636.             watk = 4
  1637.             wacc = 4
  1638.             wmagatk = 2
  1639.             wmagacc = 2
  1640.             cost = 1000
  1641.             resell = 500
  1642.         ElseIf itemID = 6004 Then
  1643.             itemName = "Steel Blades"
  1644.             itemLVLReq = 1
  1645.             watk = 3
  1646.             wacc = 2
  1647.             wmagatk = 1
  1648.             wmagacc = 2
  1649.             cost = 600
  1650.             resell = 300
  1651.         ElseIf itemID = 6005 Then
  1652.             itemName = "Lath Blades"
  1653.             itemLVLReq = 4
  1654.             watk = 4
  1655.             wacc = 6
  1656.             wmagatk = 2
  1657.             wmagacc = 2
  1658.             wgan = -5
  1659.             wjuk = 5
  1660.             cost = 1400
  1661.             resell = 700
  1662.         ElseIf itemID = 6006 Then
  1663.             itemName = "Shadow Blades"
  1664.             itemLVLReq = 6
  1665.             watk = 4
  1666.             wacc = 8
  1667.             wmagatk = 2
  1668.             wmagacc = 2
  1669.             wrai = -5
  1670.             wani = 5
  1671.             cost = 1800
  1672.             resell = 900
  1673.         ElseIf itemID = 6007 Then
  1674.             itemName = "Spark Blades"
  1675.             itemLVLReq = 3
  1676.             watk = 4
  1677.             wacc = 5
  1678.             wmagatk = 2
  1679.             wmagacc = 2
  1680.             wrue = -5
  1681.             wvak = 5
  1682.             cost = 1200
  1683.             resell = 600
  1684.         ElseIf itemID = 6008 Then
  1685.             itemName = "Sotetsu"
  1686.             itemLVLReq = 9
  1687.             watk = 9
  1688.             wacc = 13
  1689.             wmagatk = 2
  1690.             wmagacc = 2
  1691.         ElseIf itemID = 6009 Then
  1692.             itemName = "Fuse Blades"
  1693.             itemLVLReq = 5
  1694.             watk = 4
  1695.             wacc = 7
  1696.             wmagatk = 2
  1697.             wmagacc = 2
  1698.             wrai = -5
  1699.             wani = 5
  1700.             cost = 1600
  1701.             resell = 800
  1702.         ElseIf itemID = 6010 Then
  1703.             itemName = "Cats Blades"
  1704.             itemLVLReq = 6
  1705.             watk = 6
  1706.             wacc = 9
  1707.             wmagatk = 2
  1708.             wmagacc = 2
  1709.             wgan = 1
  1710.             wrue = 1
  1711.             wvak = 1
  1712.             wjuk = 1
  1713.             wrai = 1
  1714.             wani = 1
  1715.             cost = 2000
  1716.             resell = 1000
  1717.         ElseIf itemID = 6011 Then
  1718.             itemName = "Ronin Blads"
  1719.             itemLVLReq = 7
  1720.             watk = 7
  1721.             wacc = 10
  1722.             wevd = 10
  1723.             wmagatk = 2
  1724.             wmagacc = 1
  1725.             cost = 2200
  1726.             resell = 1100
  1727.         ElseIf itemID = 6012 Then
  1728.             itemName = "Spell Blades"
  1729.             itemLVLReq = 8
  1730.             watk = 8
  1731.             wacc = 11
  1732.             wmagatk = 2
  1733.             wmagacc = 2
  1734.             cost = 2400
  1735.             resell = 1200
  1736.         ElseIf itemID = 6013 Then
  1737.             itemName = "Bloody Blades"
  1738.             itemLVLReq = 8
  1739.             watk = 8
  1740.             wacc = 12
  1741.             wmagatk = 2
  1742.             wmagacc = 2
  1743.             cost = 2600
  1744.             resell = 1300
  1745.         ElseIf itemID = 6014 Then
  1746.             itemName = "Enou"
  1747.             itemLVLReq = 10
  1748.             watk = 9
  1749.             wacc = 14
  1750.             wmagatk = 2
  1751.             wmagacc = 2
  1752.             wvak = 10
  1753.             wrue = -10
  1754.             cost = 3000
  1755.             resell = 1500
  1756.         ElseIf itemID = 6015 Then
  1757.             itemName = "Ryokugun"
  1758.             itemLVLReq = 11
  1759.             watk = 9
  1760.             wacc = 15
  1761.             wmagatk = 2
  1762.             wmagacc = 2
  1763.             wjuk = 10
  1764.             wgan = -10
  1765.             cost = 3200
  1766.             resell = 1600
  1767.         ElseIf itemID = 6016 Then
  1768.             itemName = "Raitei"
  1769.             itemLVLReq = 11
  1770.             watk = 9
  1771.             wacc = 16
  1772.             wmagatk = 2
  1773.             wmagacc = 2
  1774.             wrai = 10
  1775.             wani = -10
  1776.             cost = 3400
  1777.             resell = 1700
  1778.         ElseIf itemID = 6017 Then
  1779.             itemName = "Anshou"
  1780.             itemLVLReq = 12
  1781.             watk = 9
  1782.             wacc = 17
  1783.             wmagatk = 4
  1784.             wmagacc = 4
  1785.             wani = 10
  1786.             wrai = -10
  1787.             cost = 3600
  1788.             resell = 1800
  1789.         ElseIf itemID = 6018 Then
  1790.             itemName = "Soul Blades"
  1791.             itemLVLReq = 12
  1792.             watk = 9
  1793.             wacc = 20
  1794.             wmagatk = -5
  1795.             wmagacc = -5
  1796.             wrai = 2
  1797.             wvak = 2
  1798.             wani = 2
  1799.             wjuk = 2
  1800.             cost = 3600
  1801.             resell = 1800
  1802.         ElseIf itemID = 6019 Then
  1803.             itemName = "Master Blades"
  1804.             itemLVLReq = 13
  1805.             watk = 11
  1806.             wacc = 18
  1807.             wmagatk = 4
  1808.             wmagacc = 4
  1809.             wrai = 2
  1810.             wvak = 2
  1811.             wani = 2
  1812.             wjuk = 2
  1813.             wrue = 2
  1814.             wgan = 2
  1815.             cost = 3800
  1816.             resell = 1900
  1817.         ElseIf itemID = 6020 Then
  1818.             itemName = "Dante's Blades"
  1819.             itemLVLReq = 14
  1820.             watk = 10
  1821.             wacc = 20
  1822.             wmagatk = 4
  1823.             wmagacc = 4
  1824.             cost = 4200
  1825.             resell = 2100
  1826.         ElseIf itemID = 6021 Then
  1827.             itemName = "Hell's Gate"
  1828.             itemLVLReq = 14
  1829.             watk = 12
  1830.             wacc = 19
  1831.             wmagatk = 4
  1832.             wmagacc = 4
  1833.             wrai = 3
  1834.             wvak = 3
  1835.             wani = 3
  1836.             wjuk = 3
  1837.             wrue = 3
  1838.             wgan = 3
  1839.             cost = 4000
  1840.             resell = 2000
  1841.         ElseIf itemID = 6022 Then
  1842.             itemName = "Sotetsu"
  1843.             itemLVLReq = 9
  1844.             watk = 9
  1845.             wacc = 13
  1846.             wmagatk = 2
  1847.             wmagacc = 2
  1848.             cost = 2800
  1849.             resell = 1400
  1850.         ElseIf itemID = 6023 Then
  1851.             itemName = "Shirogane"
  1852.             itemLVLReq = 15
  1853.             watk = 13
  1854.             wacc = 10
  1855.             wmagatk = 5
  1856.             wmagacc = 5
  1857.             wrai = 3
  1858.             wvak = 3
  1859.             wani = 3
  1860.             wjuk = 3
  1861.             wrue = 3
  1862.             wgan = 3
  1863.             cost = 4400
  1864.             resell = 2200
  1865.         ElseIf itemID = 6024 Then
  1866.             itemName = "Kurogane"
  1867.             itemLVLReq = 16
  1868.             watk = 13
  1869.             wacc = 20
  1870.             wmagatk = 4
  1871.             wmagacc = 5
  1872.             wrai = 4
  1873.             wvak = 4
  1874.             wani = 4
  1875.             wjuk = 4
  1876.             wrue = 4
  1877.             wgan = 4
  1878.             cost = 4600
  1879.             resell = 2300
  1880.         ElseIf itemID = 6025 Then
  1881.             itemName = "Yosetu & Fuyou"
  1882.             itemLVLReq = 16
  1883.             watk = 14
  1884.             wacc = 10
  1885.             wmagatk = 5
  1886.             wmagacc = 5
  1887.             wrai = 5
  1888.             wvak = 5
  1889.             wani = 5
  1890.             wjuk = 5
  1891.             wrue = 5
  1892.             wgan = 5
  1893.             cost = 4800
  1894.             resell = 2400
  1895.         ElseIf itemID = 6026 Then
  1896.             itemName = "Slayers"
  1897.             itemLVLReq = 17
  1898.             watk = 15
  1899.             wacc = 10
  1900.             wevd = 10
  1901.             wmagatk = 4
  1902.             wmagacc = 5
  1903.             wmagevd = 10
  1904.             cost = 5000
  1905.             resell = 2500
  1906.         ElseIf itemID = 6027 Then
  1907.             itemName = "Homura"
  1908.             itemLVLReq = 18
  1909.             watk = 15
  1910.             wacc = 5
  1911.             wmagatk = 6
  1912.             wmagacc = 6
  1913.             wrue = -12
  1914.             wvak = 12
  1915.             cost = 5200
  1916.             resell = 2600
  1917.         ElseIf itemID = 6028 Then
  1918.             itemName = "Tsumuji"
  1919.             itemLVLReq = 19
  1920.             watk = 15
  1921.             wacc = 10
  1922.             wmagatk = 4
  1923.             wmagacc = 6
  1924.             wgan = -12
  1925.             wjuk = 12
  1926.             cost = 5400
  1927.             resell = 2700
  1928.         ElseIf itemID = 6029 Then
  1929.             itemName = "Mikazuchi"
  1930.             itemLVLReq = 19
  1931.             watk = 15
  1932.             wacc = 5
  1933.             wmagatk = 6
  1934.             wmagacc = 6
  1935.             wrai = 10
  1936.             wani = -12
  1937.             cost = 5600
  1938.             resell = 2800
  1939.         ElseIf itemID = 6030 Then
  1940.             itemName = "Mukuro"
  1941.             itemLVLReq = 20
  1942.             watk = 16
  1943.             wacc = 10
  1944.             wmagatk = 4
  1945.             wmagacc = 6
  1946.             wrai = -12
  1947.             wani = 12
  1948.             cost = 5800
  1949.             resell = 2900
  1950.         ElseIf itemID = 9999 Then
  1951.             itemName = "Blade of Vengence"
  1952.             itemLVLReq = 1
  1953.             watk = 200
  1954.             wacc = 200
  1955.             wevd = 200
  1956.             wdef = 200
  1957.             wmagatk = 200
  1958.             wmagacc = 200
  1959.             wmagdef = 200
  1960.             wmagevd = 200
  1961.             wgan = 200
  1962.             wrue = 200
  1963.             wvak = 200
  1964.             wjuk = 200
  1965.             wrai = 200
  1966.             wani = 200
  1967.         End If
  1968.  
  1969.         If varTrigger = 1 Then
  1970.             Return itemName
  1971.         ElseIf varTrigger = 2 Then
  1972.             Return itemLVLReq
  1973.         ElseIf varTrigger = 3 Then 'return item stats
  1974.            With gamescreen
  1975.                 If itemID >= 1 And itemID <= 100 Then
  1976.                     statReset(1)
  1977.                     '.equipedItems.Items.RemoveAt(0)
  1978.                    '.equipedItems.Items.Insert(0, itemID)
  1979.                    '.equipedItemsInv.Items.RemoveAt(0)
  1980.                    '.equipedItemsInv.Items.Insert(0, .lsinv.SelectedIndex)
  1981.                    .hatk = hatk
  1982.                     .hacc = hacc
  1983.                     .hevd = hevd
  1984.                     .hdef = hdef
  1985.                     .hmagatk = hmagatk
  1986.                     .hmagacc = hmagacc
  1987.                     .hmagdef = hmagdef
  1988.                     .hmagevd = hmagevd
  1989.                     .hgan = hgan
  1990.                     .hrue = hrue
  1991.                     .hvak = hvak
  1992.                     .hjuk = hjuk
  1993.                     .hrai = hrai
  1994.                     .hani = hani
  1995.                 ElseIf itemID >= 101 And itemID <= 200 Then
  1996.                     statReset(2)
  1997.                     '.equipedItems.Items.RemoveAt(1)
  1998.                    '.equipedItems.Items.Insert(1, itemID)
  1999.                    '.equipedItemsInv.Items.RemoveAt(1)
  2000.                    '.equipedItemsInv.Items.Insert(1, .lsinv.SelectedIndex)
  2001.                    .batk = batk
  2002.                     .bacc = bacc
  2003.                     .bevd = bevd
  2004.                     .bdef = bdef
  2005.                     .bmagatk = bmagatk
  2006.                     .bmagacc = bmagacc
  2007.                     .bmagdef = bmagdef
  2008.                     .bmagevd = bmagevd
  2009.                     .bgan = bgan
  2010.                     .brue = brue
  2011.                     .bvak = bvak
  2012.                     .bjuk = bjuk
  2013.                     .brai = brai
  2014.                     .bani = bani
  2015.                 ElseIf itemID >= 201 And itemID <= 300 Then
  2016.                     statReset(3)
  2017.                     '.equipedItems.Items.RemoveAt(2)
  2018.                    '.equipedItems.Items.Insert(2, itemID)
  2019.                    '.equipedItemsInv.Items.RemoveAt(2)
  2020.                    '.equipedItemsInv.Items.Insert(2, .lsinv.SelectedIndex)
  2021.                    .aatk = aatk
  2022.                     .aacc = aacc
  2023.                     .aevd = aevd
  2024.                     .adef = adef
  2025.                     .amagatk = amagatk
  2026.                     .amagacc = amagacc
  2027.                     .amagdef = amagdef
  2028.                     .amagevd = amagevd
  2029.                     .agan = agan
  2030.                     .arue = arue
  2031.                     .avak = avak
  2032.                     .ajuk = ajuk
  2033.                     .arai = arai
  2034.                     .aani = aani
  2035.                 ElseIf itemID >= 301 And itemID <= 400 Then
  2036.                     statReset(4)
  2037.                     '.equipedItems.Items.RemoveAt(3)
  2038.                    '.equipedItems.Items.Insert(3, itemID)
  2039.                    '.equipedItemsInv.Items.RemoveAt(3)
  2040.                    '.equipedItemsInv.Items.Insert(3, .lsinv.SelectedIndex)
  2041.                    .gatk = gatk
  2042.                     .gacc = gacc
  2043.                     .gevd = gevd
  2044.                     .gdef = gdef
  2045.                     .gmagatk = gmagatk
  2046.                     .gmagacc = gmagacc
  2047.                     .gmagdef = gmagdef
  2048.                     .gmagevd = gmagevd
  2049.                     .ggan = ggan
  2050.                     .grue = grue
  2051.                     .gvak = gvak
  2052.                     .gjuk = gjuk
  2053.                     .grai = grai
  2054.                     .gani = gani
  2055.                 Else
  2056.                     statReset(5)
  2057.                     '.equipedItems.Items.RemoveAt(4)
  2058.                    '.equipedItems.Items.Insert(4, itemID)
  2059.                    '.equipedItemsInv.Items.RemoveAt(4)
  2060.                    '.equipedItemsInv.Items.Insert(4, .lsinv.SelectedIndex)
  2061.                    .watk = watk
  2062.                     .wacc = wacc
  2063.                     .wevd = wevd
  2064.                     .wdef = wdef
  2065.                     .wmagatk = wmagatk
  2066.                     .wmagacc = wmagacc
  2067.                     .wmagdef = wmagdef
  2068.                     .wmagevd = wmagevd
  2069.                     .wgan = wgan
  2070.                     .wrue = wrue
  2071.                     .wvak = wvak
  2072.                     .wjuk = wjuk
  2073.                     .wrai = wrai
  2074.                     .wani = wani
  2075.                 End If
  2076.             End With
  2077.         ElseIf varTrigger = 4 Then
  2078.             Return cost
  2079.         ElseIf varTrigger = 5 Then
  2080.             Return resell
  2081.         End If
  2082.  
  2083.     End Function
  2084.  
  2085.     Public Sub statReset(ByVal trigger As Integer)
  2086.         With gamescreen
  2087.             If trigger = 1 Then
  2088.                 .hatk = 0
  2089.                 .hacc = 0
  2090.                 .hevd = 0
  2091.                 .hdef = 0
  2092.                 .hmagatk = 0
  2093.                 .hmagacc = 0
  2094.                 .hmagdef = 0
  2095.                 .hmagevd = 0
  2096.                 .hgan = 0
  2097.                 .hrue = 0
  2098.                 .hvak = 0
  2099.                 .hjuk = 0
  2100.                 .hrai = 0
  2101.                 .hani = 0
  2102.             ElseIf trigger = 2 Then
  2103.                 .batk = 0
  2104.                 .bacc = 0
  2105.                 .bevd = 0
  2106.                 .bdef = 0
  2107.                 .bmagatk = 0
  2108.                 .bmagacc = 0
  2109.                 .bmagdef = 0
  2110.                 .bmagevd = 0
  2111.                 .bgan = 0
  2112.                 .brue = 0
  2113.                 .bvak = 0
  2114.                 .bjuk = 0
  2115.                 .brai = 0
  2116.                 .bani = 0
  2117.             ElseIf trigger = 3 Then
  2118.                 .aatk = 0
  2119.                 .aacc = 0
  2120.                 .aevd = 0
  2121.                 .adef = 0
  2122.                 .amagatk = 0
  2123.                 .amagacc = 0
  2124.                 .amagdef = 0
  2125.                 .amagevd = 0
  2126.                 .agan = 0
  2127.                 .arue = 0
  2128.                 .avak = 0
  2129.                 .ajuk = 0
  2130.                 .arai = 0
  2131.                 .aani = 0
  2132.             ElseIf trigger = 4 Then
  2133.                 .gatk = 0
  2134.                 .gacc = 0
  2135.                 .gevd = 0
  2136.                 .gdef = 0
  2137.                 .gmagatk = 0
  2138.                 .gmagacc = 0
  2139.                 .gmagdef = 0
  2140.                 .gmagevd = 0
  2141.                 .ggan = 0
  2142.                 .grue = 0
  2143.                 .gvak = 0
  2144.                 .gjuk = 0
  2145.                 .grai = 0
  2146.                 .gani = 0
  2147.             Else
  2148.                 .watk = 0
  2149.                 .wacc = 0
  2150.                 .wevd = 0
  2151.                 .wdef = 0
  2152.                 .wmagatk = 0
  2153.                 .wmagacc = 0
  2154.                 .wmagdef = 0
  2155.                 .wmagevd = 0
  2156.                 .wgan = 0
  2157.                 .wrue = 0
  2158.                 .wvak = 0
  2159.                 .wjuk = 0
  2160.                 .wrai = 0
  2161.                 .wani = 0
  2162.             End If
  2163.         End With
  2164.     End Sub
  2165.  
  2166.     Private Sub itemStatReset()
  2167.         watk = 0
  2168.         wacc = 0
  2169.         wdef = 0
  2170.         wevd = 0
  2171.         wmagacc = 0
  2172.         wmagatk = 0
  2173.         wmagdef = 0
  2174.         wmagevd = 0
  2175.         wgan = 0
  2176.         wjuk = 0
  2177.         wani = 0
  2178.         wvak = 0
  2179.         wrai = 0
  2180.         wrue = 0
  2181.         hacc = 0
  2182.         hatk = 0
  2183.         hevd = 0
  2184.         hdef = 0
  2185.         hmagacc = 0
  2186.         hmagatk = 0
  2187.         hmagdef = 0
  2188.         hmagevd = 0
  2189.         hgan = 0
  2190.         hvak = 0
  2191.         hrue = 0
  2192.         hrai = 0
  2193.         hjuk = 0
  2194.         hani = 0
  2195.         gacc = 0
  2196.         gatk = 0
  2197.         gevd = 0
  2198.         gdef = 0
  2199.         gmagacc = 0
  2200.         gmagatk = 0
  2201.         gmagdef = 0
  2202.         gmagevd = 0
  2203.         ggan = 0
  2204.         gvak = 0
  2205.         grue = 0
  2206.         grai = 0
  2207.         gjuk = 0
  2208.         gani = 0
  2209.         aacc = 0
  2210.         aatk = 0
  2211.         aevd = 0
  2212.         adef = 0
  2213.         amagacc = 0
  2214.         amagatk = 0
  2215.         amagdef = 0
  2216.         amagevd = 0
  2217.         agan = 0
  2218.         avak = 0
  2219.         arue = 0
  2220.         arai = 0
  2221.         ajuk = 0
  2222.         aani = 0
  2223.         bacc = 0
  2224.         batk = 0
  2225.         bevd = 0
  2226.         bdef = 0
  2227.         bmagacc = 0
  2228.         bmagatk = 0
  2229.         bmagdef = 0
  2230.         bmagevd = 0
  2231.         bgan = 0
  2232.         bvak = 0
  2233.         brue = 0
  2234.         brai = 0
  2235.         bjuk = 0
  2236.         bani = 0
  2237.     End Sub
  2238.  
  2239. End Module
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement