From fe64992654062ce3ae71bc18997a036b84e04705 Mon Sep 17 00:00:00 2001 From: CallMeHein <37670876+CallMeHein@users.noreply.github.com> Date: Thu, 21 May 2026 22:56:12 +0200 Subject: [PATCH 1/7] Fix Shellslug multiplying Daily Corals by 0 --- mysite/models/advice/generators/general.py | 7 +++++-- mysite/w7/coral_reef.py | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/mysite/models/advice/generators/general.py b/mysite/models/advice/generators/general.py index a467cd08..4f31baeb 100644 --- a/mysite/models/advice/generators/general.py +++ b/mysite/models/advice/generators/general.py @@ -27,11 +27,14 @@ def get_upgrade_vault_advice(upgrade_name: str, link_to_section: bool = True, ad ) -def get_companion_advice(companion_name: str) -> tuple[int | float, Advice]: +def get_companion_advice(companion_name: str, value_is_multi: bool = False) -> tuple[int | float, Advice]: companion_data_missing = not session_data.account.companions['Companion Data Present'] missing_companion_data_txt = '
Note: Could be inaccurate. Companion data not found!' if companion_data_missing else '' companion = companions_data[companion_name] - return companion['Value'] * has_companion(companion_name), Advice( + companion_value = companion['Value'] * has_companion(companion_name) + if companion_value == 0 and value_is_multi: + companion_value = 1 + return companion_value , Advice( label=f"Companions - {companion_name}:" f"
{companion['Description']}" f"{missing_companion_data_txt}", diff --git a/mysite/w7/coral_reef.py b/mysite/w7/coral_reef.py index c63010fe..5c29746e 100644 --- a/mysite/w7/coral_reef.py +++ b/mysite/w7/coral_reef.py @@ -33,7 +33,7 @@ def get_sources_of_coral_info_group() -> AdviceGroup: base_daily_corals = 10 # Mult A - shellslug_multi, shellslug_advice = get_companion_advice('Shellslug') + shellslug_multi, shellslug_advice = get_companion_advice('Shellslug', value_is_multi=True) # Mult B coolral = session_data.account.event_points_shop['Bonuses']['Coolral'] From 16092fef433c54663822060d6bf069530b3d9703 Mon Sep 17 00:00:00 2001 From: CallMeHein <37670876+CallMeHein@users.noreply.github.com> Date: Thu, 21 May 2026 23:02:36 +0200 Subject: [PATCH 2/7] Merge pull request #504 from CallMeHein/dancing-coral Add Dancing Coral section --- mysite/consts/idleon/w3/construction.py | 2 + mysite/consts/idleon/w7/dancing_coral.py | 18 +++++ mysite/models/account_calcs.py | 1 + mysite/models/general/account.py | 2 + mysite/models/w7/dancing_coral.py | 65 ++++++++++++++++++ mysite/static/assets/_dancing_coral.scss | 13 ++++ mysite/static/assets/image-mapping.scss | 2 + mysite/static/imgs/1x/sprite-673-27.png | Bin 0 -> 6398 bytes .../imgs/extracted_sprites/DancingCoral0.png | Bin 0 -> 1893 bytes mysite/taskSuggester.py | 2 + .../sprite_extractor/sprite_extractor_dict.py | 6 ++ mysite/w7/coral_reef.py | 8 +-- mysite/w7/dancing_coral.py | 44 +++++++++++- mysite/w7/zenith_market.py | 8 ++- 14 files changed, 163 insertions(+), 8 deletions(-) create mode 100644 mysite/consts/idleon/w3/construction.py create mode 100644 mysite/consts/idleon/w7/dancing_coral.py create mode 100644 mysite/models/w7/dancing_coral.py create mode 100644 mysite/static/assets/_dancing_coral.scss create mode 100644 mysite/static/imgs/1x/sprite-673-27.png create mode 100644 mysite/static/imgs/extracted_sprites/DancingCoral0.png diff --git a/mysite/consts/idleon/w3/construction.py b/mysite/consts/idleon/w3/construction.py new file mode 100644 index 00000000..6a94ff1d --- /dev/null +++ b/mysite/consts/idleon/w3/construction.py @@ -0,0 +1,2 @@ +# Last updated in v2.505 May 20 +ShrineInfo = [["Woodular_Shrine","Boosts_Total_Damage_of_players_on_this_map_by_+{%._@_AFK_Time_to_next_Lv:_@_}","12","3","0",],["Isaccian_Shrine","Boosts_Max_HP_and_DEF_of_players_on_this_map_by_+{%._@_AFK_Time_to_next_Lv:_@_}","12","3","0",],["Crystal_Shrine","Boosts_the_Lv_Up_Rate_of_all_Shrines_on_this_map_by_+{%._@_AFK_Time_to_next_Lv:_@_}","20","4","0",],["Pantheon_Shrine","Boosts_Carry_Capacity_of_players_on_this_map_by_+{%._@_AFK_Time_to_next_Lv:_@_}","10","2","0",],["Clover_Shrine","Boosts_Drop_Rate_of_players_on_this_map_by_+{%._@_AFK_Time_to_next_Lv:_@_}","15","3","0",],["Summereading_Shrine","Boosts_ALL_Exp_Gain_of_players_on_this_map_by_+{%._@_AFK_Time_to_next_Lv:_@_}","6","1","0",],["Crescent_Shrine","Boosts_Crystal_and_Giant_Spawn_chance_on_this_map_by_+{%._@_AFK_Time_to_next_Lv:_@_}","50","7.5","0",],["Undead_Shrine","Boosts_Respawn_Rate_of_monsters_on_this_map_by_+{%._@_AFK_Time_to_next_Lv:_@_}","5","1","0",],["Primordial_Shrine","Boosts_AFK_Gain_Rate_on_this_map_by_+{%._@_AFK_Time_to_next_Lv:_@_}","1","0.1","0",],] \ No newline at end of file diff --git a/mysite/consts/idleon/w7/dancing_coral.py b/mysite/consts/idleon/w7/dancing_coral.py new file mode 100644 index 00000000..fb9c4052 --- /dev/null +++ b/mysite/consts/idleon/w7/dancing_coral.py @@ -0,0 +1,18 @@ +from consts.idleon.w3.construction import ShrineInfo +from consts.idleon.w7.spelunk import Spelunky +from utils.number_formatting import parse_number + +dancing_coral_base_costs = Spelunky[22] +dancing_coral_description_templates = Spelunky[23] +dancing_coral_bonus_base_values = Spelunky[24] + +dancing_coral_bonus_data = [] +for index, (base_cost, description_template, base_value) in enumerate(zip(dancing_coral_base_costs, dancing_coral_description_templates, dancing_coral_bonus_base_values)): + if "who_knows" in description_template: + continue + dancing_coral_bonus_data.append({ + "Base Cost": parse_number(base_cost), + "Description Template": description_template.replace("_", " "), + "Base Value": parse_number(base_value), + "Target Shrine Name": ShrineInfo[index][0].replace("_", " ") + }) diff --git a/mysite/models/account_calcs.py b/mysite/models/account_calcs.py index 8e4f8194..88264336 100644 --- a/mysite/models/account_calcs.py +++ b/mysite/models/account_calcs.py @@ -2225,6 +2225,7 @@ def _calculate_w7(account): account.gallery.calculate_bonuses(account) account.zenith_market.calculate_bonuses() account.research.calculate_bonuses() + account.dancing_coral.calculate_bonuses() def _calculate_w7_coral_reef(account): diff --git a/mysite/models/general/account.py b/mysite/models/general/account.py index 83b63ac8..677c4ecf 100644 --- a/mysite/models/general/account.py +++ b/mysite/models/general/account.py @@ -11,6 +11,7 @@ from models.w6.emperor import Emperor from models.w6.beanstalk import Beanstalk from models.w6.sneaking import Sneaking +from models.w7.dancing_coral import DancingCoral from models.w7.research import Research from models.w7.spelunk import Spelunk from models.w7.advice_fish import AdviceFish @@ -103,6 +104,7 @@ def __init__(self, json_data, source_string: InputType): self.gallery = Gallery(self.raw_data) self.zenith_market = ZenithMarket(self.raw_data) self.research = Research(self.raw_data) + self.dancing_coral = DancingCoral(self.raw_data) def add_alert_list( self, group_name: str, advice_list: list[Advice | None] | set[Advice | None] diff --git a/mysite/models/w7/dancing_coral.py b/mysite/models/w7/dancing_coral.py new file mode 100644 index 00000000..33cf62ba --- /dev/null +++ b/mysite/models/w7/dancing_coral.py @@ -0,0 +1,65 @@ +from consts.consts_autoreview import ValueToMulti +from consts.idleon.w7.dancing_coral import dancing_coral_bonus_data +from models.advice.advice import Advice +from utils.logging import get_logger +from utils.safer_data_handling import safe_loads, safer_index + +logger = get_logger(__name__) + +class DancingCoralBonus: + def __init__(self, info: dict, unlocked: bool, index: int): + self.index = index + self.unlocked = unlocked + self.base_cost = info["Base Cost"] + self.description_template = info["Description Template"] + self.base_value = info["Base Value"] + self.target_shrine_name = info["Target Shrine Name"] + self.value = 0 + self.image = f"dancing-coral-bonus-{self.index}" + + def calculate_bonus(self): + from models.general.session_data import session_data + target_shrine_level = session_data.account.construction_buildings[self.target_shrine_name]["Level"] + levels_above_threshold = max(target_shrine_level - 200, 0) + self.value = levels_above_threshold * self.base_value + if "}" in self.description_template: + self.value = ValueToMulti(self.value) + + + def get_advice(self): + from models.general.session_data import session_data + target_shrine_level = session_data.account.construction_buildings[self.target_shrine_name]["Level"] + description = self.description_template + total_bonus = "" + if "{" in description: + description = description.replace("{", str(self.base_value)) + total_bonus = self.description_template.replace("{", str(self.value)) + elif "}" in description: + description = description.replace("}", str(ValueToMulti(self.base_value))) + total_bonus = self.description_template.replace("}", str(self.value)) + + description += f" per {self.target_shrine_name} level above 200" + if self.unlocked: + description += f"
Total Bonus: {total_bonus}" + + return Advice( + label=f"{description}", + picture_class=self.image, + progression=0 if not self.unlocked else target_shrine_level, + goal=1 if not self.unlocked else "" + ) + + +class DancingCoral(dict[int, DancingCoralBonus]): + def __init__(self, raw_data: dict): + raw_spelunk_info = safe_loads(raw_data.get("Spelunk", [])) + if not raw_spelunk_info: + logger.warning("Dancing Coral data not present.") + unlocked_bonuses = safer_index(safer_index(raw_spelunk_info, 4, []), 6, 0) + for index, info in enumerate(dancing_coral_bonus_data): + upgrade = DancingCoralBonus(info, (index + 1) <= unlocked_bonuses, index) + self[index] = upgrade + + def calculate_bonuses(self): + for bonus in self.values(): + bonus.calculate_bonus() \ No newline at end of file diff --git a/mysite/static/assets/_dancing_coral.scss b/mysite/static/assets/_dancing_coral.scss new file mode 100644 index 00000000..f3790c32 --- /dev/null +++ b/mysite/static/assets/_dancing_coral.scss @@ -0,0 +1,13 @@ +@import "ballot"; +@import "coral"; +@import "research"; +@import "spelunking"; + +$dancing-coral: ( + dancing-coral: img('extracted_sprites/DancingCoral0.png'), + dancing-coral-bonus-0: map-get($all-coral, coral), + dancing-coral-bonus-1: map-get($all-spelunking, spelunking-tool-0), + dancing-coral-bonus-2: map-get($all-spelunking, spelunking-amber-0), + dancing-coral-bonus-3: map-get($ballot, ballot-15), + dancing-coral-bonus-4: map-get($all-research, research) +); diff --git a/mysite/static/assets/image-mapping.scss b/mysite/static/assets/image-mapping.scss index 98ff5f04..26e07f63 100644 --- a/mysite/static/assets/image-mapping.scss +++ b/mysite/static/assets/image-mapping.scss @@ -126,6 +126,7 @@ $id-map: map-merge($id-map, $all-summoning); @import "advice_fish"; @import "clam"; @import "coral"; +@import "dancing_coral"; @import "gallery"; @import "legend-talents"; @import "meritocracy"; @@ -140,6 +141,7 @@ $id-map: map-merge($id-map, $all-gallery); $id-map: map-merge($id-map, $all-legend-talents); $id-map: map-merge($id-map, $all-research); $id-map: map-merge($id-map, $all-spelunking); +$id-map: map-merge($id-map, $dancing-coral); $id-map: map-merge($id-map, $meritocracy); $id-map: map-merge($id-map, $zenith-market); diff --git a/mysite/static/imgs/1x/sprite-673-27.png b/mysite/static/imgs/1x/sprite-673-27.png new file mode 100644 index 0000000000000000000000000000000000000000..57d60f990663f54691a3574a330032350d5a2435 GIT binary patch literal 6398 zcmVJ2000=pNklaL4ic)H2}`5-5BmjTZh$pJ--2a*MJfZFQqEM{j{H5wRzoS)8! ziroRa>*qriFyzjXzkV$(y}176pZ@vNOph-u-7PfNYOpyOr~m!WzZHv^EuNwUWM0O| zb^EW78S{+Jzmt@g4kZt(o_k9vun5R%use)nKtA7KLABR?gMey5=33EnYjdfbExaVK!#^TF$*AujYoXeDw9=^+yZXw$NB= z_`1jWk>Ts1%rwR;N%`n&W%cg7R)g)3)z(RFP|U`e=}k=bzbdoEYo`{ld4;SXW>Fb+ z%$QrS_tls!UOTmb?b8%5W&=K^%Fo|%FyF;%@iHx7`{Xwxm9XlV&^p}IqAv&DmDhj# z>%T2trdeQa?+)yjeAA1}YPZIMWxT*unY|(_)0w=~G}cS#OkmH}U`H=3*J@_3oe{C~ z8x%N^y+w0XX{|?jso#gzJs0;K8;ol{k}ua7isFs>&$ zSMsmAXDB;XzxCgL|Ci5y|GR%IhFHw(NUWb0^E{gWEH7sEu)H!DrAT{9L3cdjXMsI> zgK3VOAI`Zh;Proh{fCYj+aod?sjKs1Ubtot%c~>>)#Nx?efxN{fLUN1|IvV19?ihr z+7B_D&MOg^m3TD=+`x{;yHb2T_4uhb{6tT~t1Cj92nn+tO}>jodKO?^4V4#$QduGQ z$kaE>eQl{;D}G`hZRo4iFr#bfHJ)$-dl_C?g8|BHb8Qv$D!`8NiZrSz+tcYuc{vy1 zHR>_-&FbQ0I*Hd-UVCzH|j-E?&ZH zO{A_4%GX&6vu;n-C~mf=(+RwqST$!p=XH_x_-|mB1S3H9nj28{U=4PKnA5}Y`uOv< z`3SEj*2xVPvZ&Wrt*m`;UY?`)46l2zM*TH{lLiD0LK7r{Dgj49zY7?|weem(uIDq^ z8svkVcJpGRCe&CaJ8oZBn{`rOWP6#Fd~L7zZ)$=6V2%1?F<%`%uD^?;v1+_g%x~po zxkmoA2DZVqE-H>Ar*(5lQs6ZWslf@b#xi{uFjG`pc;QJS-*&F#z>?ahc!_Pr1h2x3 zkr z=9(p+CSC~41cwj-}BoyuJcagE>f5g~bil3{?%vMP#}H7{nK^)FFi*X)uk|#fWq=uQ0dI;2p&z zuQYEHGgCgM9Sx?8!?<;i^19~+=DCP2<)y4Re)S1%&W^Y=!PvS&ZePs>2TfrlEhN$v zz}#;n#LA#mAWehG-ZWlN!*}v(#PwBPxDjZal$B}3iq@cCwi*oUhB1lRl{c_PdwJP9 zm9VlJGG17x%rsV`rkI*!6DSJC+6wUNLSUH$T318;djpCX;2g*EnBwn|c=1z4nf*kA zc}(nuzZ&PKZ(t){?icIHEN{HM#^1dbuCuhGP`R1!Vz7n`tnJ*IvQPw8@O}M_kJTyzF%p z$BunxgW)=<-x*%eOuVajnfQ7)J!B$o%62cSMjX(Aae+ahXt1p&>tLM(%mI?U!-MKXt(oss3JghlA&?X~18fGC`QZN-83D6Dqc~f@Mh$ip*p<9YTg+y7 zWihsRUD05>c~KsZzzcbFBL8597&E?8rNB^tB+%L5B6$Po9xBFQ!7^a>XB4CO&s6;n z8|-60uxH>k^8eipc9fUr`5?SHW{6|r9BQq`&-P@#Q=up{ZMhKD@dy|z3Tnqn!SJK| ze;;F51z0_&!0bYGtTp*215^kKj*l~ zi{fW7uja+98eWJ2Nep;TyPXK!cUg{r%VG47)h!^5AFCWMqy!86R_f@>yeORqnCU&RalJCTnqURwj73Jr$BN5B}G>y|ed);Ev>-+WwQWf#NOK;(lj ztV1LJM;pxa=)5xDz78TE%qn|(hZxcI$i#8s=LoMT=9Rom-eb@aUIYKB!Up3a0%&?J z3JPGFu=*TYEl~YCELz8gxLthpUyrN*ksh5_=35()jhidVmo2&;nK*7Ukembg&f-Tg zujB=JpB?43;XhT{WD}MJ1TbB{%LWB?O-6fo7&!-h9bM=dJu9zneci*&HR5HK`Og%w z+QTcmMpyGPh0N;kMQoa58@@Ni;AYI$Zv_ksN~|kzq9EijbAh?x%(4qTt7qn=z9M5* zHn21KXY#l^c$sa*oUO&|2rtttv$I$=f}7y;6T8)4iFnUK#x~ zFZFRm>T}CKFay$>l(dStry9i>c0rhDH}%4B4^cWG&9>F2cWPW!ZY zEnOySD%UOkF5P-d@uh~>XZ)!i)8e(XTcx?|J8LZY?p9f2Uwo6^xyf`Ol~=Sz&%c}2 z&1q86u;Jfv01&Tr%{#&kZ(yJ8z-3I|k(a5tIjwhKV|nwKVen`mqvORAu&=I$7c07f zEne{rtg^y+XG(fUR^45x8$NxFW3{=|)c>o>SqYzzA#r<0Ue1J-@sc&~!ljqYN zy#urG=0!cVhZhg!JFqJX?`i^2?^bUEM>KN-W8;Q=CuVx%0<(x$Gniyx{Vq4MqHq|0 z%l?xn|KvA?^EQA2h0NpzrmWtP7uP=G^%6HQz1T;S4`F@&`Pra6l+m64Xw09|y{t?b zFTH_1JFhcXnPzy|nuyiCu}@b9r4$*w_tteYD!vjmKSHnG(G;5c+fq~yl+}B$;8WiY z>AD#eKS6`(4eTslKOya}d#=eWFTVEJb2R29DoH_L12H5lUeTq zrY@H3FXyeE!J1UQ8K4HhvWqhVt}7xF74pyd=73zwPQJpiq*skoaDV@nn{DyT9H)YW~CTF}6i8in_ zkg6W<0#(^@3}hL~314Qj(2%RuVgl(T#_4@_5Y&TEI@YiTQ$X0lEi)CI2Ej-VG$FX+H8h z18lRN>IYC7pbRnC&oOKTqn z{S2kl5voZ{)PO|76VSX4l@xCIvd?H8*TZ#nTz(6@N?y>3ylhR=KqUJIZk#Ls*nK81 zVm9K1+IesqUL2$L*wgaLG-4*_N4%O~yf6%Y`)X#uita+4^FYNvk{pQ(tiTXAisKC+ zX8ZV#+uV5>CP7o*Cif3j-&gW#SOvWBo12QjtFArDi@9&!z$!1cC&%{gXXFr=au$q75JCqiL3(*A{6uT8nW28C&jOFlH z)gOil4T3tie44Ni)^Mr5&*Igw8u&TNi)+CkGAA8S9?r~XCh%_Rxt-Tv-^pw12FB)b z_A>JZlZ)X_HwqmU0!=}~aRO#J0GPcV#ql~K-M-!ynQ=qz1?CMFFgt@+$SU%+!D}my zDP$&fF)Nt*8OeE3zR$=DwQt?Pl-0;*s!|kz3WqT$6mK(Tis}4B23Q0PX0Njt$UhTu z^x-Cus5SE)$<|_D+FS>DO|vpP$jdZjc5827_pmZ~tXJTr%&4x&j_@k7O=vVu(hGqI z+zc?&7Bu+a|0WXwvp=Iab__l`Nem1mL)^L;k-)2YTXzDlEmm3&^J;3U$D%miT#1;~ z885yv75`#n#tha;DqhE~dUR z!#aY6?&TnSxKCTnffp1KEJ*`Ys9=v;{Tq3d{$m|9QkxPUBqi1*zM2V zCQPuN*P!st5IP&c;^Wf;Nj^N!AjarojC2*RDOTdYVRjpTlfwRvfow#+w|E_CuxI8~ zj;qwa#;C{c8b~-mf+JuI%@qKHZ>;Z%ND48V8AkYTppg&0u-RJ`9E*Hs(gr(=*Cs3R z-7ve2n+yIuPl$Z);gwyFNZemn@M<`y-O0=MLFAixm0SZ}cMT*b$%$%V{$4ydr$GTN z1V{UZRtr?$kb`621Zc#W=y>fw3SeOizA zRpk4l|AwTmQQwLGRC=L0XpH)R_X+^ivB7PK^QurD$#W_Dl@ zU;U}UKi)#j_>R=X+sVr;i=8$=V%iWh7k`$O`oD)6_MP2dcC6`_3DX{n{IZ(d1Amck z*v$193c>f9`cYw>7BDJi);CM@8kz1rBK0|I>W76jTMck8FU@Jj)W=?_zgbg1EUZyJ zYRU`D)L$meY1Y)wLrIezneKfzDUU7F{qH8_F=OguX=!O`X=!O`X=!O`X=y3Y`ht3C z=|N-z*ogjpQ3rJm?9$SOD#K|17%T&cp)CJSgipSZ)=(}jT_7Ji7={m@*x=W!$xrDl zEiLU7zZD&Qj*&kmwcffeEuAPGtmaAh@%16)<_Rim@YZz==hD(0Dnk}Y->%-iK4=}j zt(CoND3_LYDji0X3}ZKdbwK?sEe~Z~vxahMX@}B*+!{t&gQ4{Qu0ys4a%pLY{Ozae z_UD^6__6EVPq2n)@S4G_Pfv}vw6wIL?rXw2O!|8fnqOTY1BpFs8fR(gZKT7ncOZ0c z_tcDra=krWTIy8>D0nM*WI)1U{4M(*+xV$mwx;>FNqWnw{+5ezP40jV<7R*9b5jFmR>?WDEtJhL!nmI;(Vad&~$^J>7;?&x>4-8nJg`R zn|vS>L&J7MtE$Jd=H4}sGL$2~k(yYw20rKYkoNdrTDnB~lrZBbQ`5ZPJ&+&tdn5*a zRV9w*SND4@Q4Kp{EG?a`Za{e0>eES|mijhQ_vq7zWyiZ;oC2vYvb{s;Ll^nin~LN= z<9})CbalfhP1_7yFpNGVGO(kD=7B6j3ICC3Q1%X_$%j%0Q1UgucydOjewUUmQ82Dby%7YeBZu)&$?=>aosme zgx^9`gaN8+F_0El<4g^t4kO2}Lx;iST4!%IOG}qXhsK(d|C?0T%&d*(Ro_GL5Pgh) zM|<&W>r^s~TmR=0`SVbY>RDR4T;ANbueY*YBM*jY)WF?94*cvHNcWBPWXK;+`O$yx zGQ*P+#xa(bene>Q^ywH365hs+nm8QDz?UDVxR%RkAmJZ35i@(u`ST5i*YN;HewUVh zTzEo+!x#(_1~MBKQ#z25(U4#ueSkjlZ?y2!t?XsdVCwK<7&E_1OFt$wvkrj|3Pgi> z)<8DjY2}*%<%45UoNy3Xzt3g==aL6g{Vpy2n9_m7fI!JGWlinF5)7gl{^^5%?>n#8 ze9{=1C`SxsRA=OOY3WCVCk2{z&p^5b1L?yE(>))522zdBZw-#U<|lQh>W7CC`HuW9 zE&Z5uATg9^+-4|wphVi#&C`+nh-FX5y9ZM9lpBNj-1?@`($cqUIFLL{^>x_%zh!&4 zshfe^7|O9KrTI$bRhYOq=S?W!0qchne4Z$p#cjm8_4Q& zG?3-EO8sk$dTb5k(nAUZ$pbJNNFGX8GLTr?4M^a7&oIKj?}NxU-#AJR zr2{DgqC=_YvVruk4cT8bjG5K-Ixx*Zs_#0Gd;{?{>c1XW|4U0hrqbNCS-YW}Fdatr z+YICZ%Y2)UBTkI9;n2Xof2PyLzr={sXOK%-%VJnz7t8vDmk zZuwtY`ca|5XHEC3ux@KG^@%p?AJV*LP5mq_y@hlTwoLagExnTdAA`o_xA3YX4gdfE M07*qoM6N<$f<3T#fdBvi literal 0 HcmV?d00001 diff --git a/mysite/static/imgs/extracted_sprites/DancingCoral0.png b/mysite/static/imgs/extracted_sprites/DancingCoral0.png new file mode 100644 index 0000000000000000000000000000000000000000..c6bfa0f0148555a4083f194d493a0034533357d0 GIT binary patch literal 1893 zcmV-r2b%baP)C(^3Tbq47yn)_mno$E;L2l}cRMk48!mkQ)0KGgi7S{KiGRO>Kv zR^Rll=acHJqnMoq01RLL-1l2;bq{&Fq#g4=8!QBom)wvZukSu^1^wb(^ANab&vwR0 zB;E3#zpH<2RGOcwbpU{wvj70hWr3!f4vzWmHPiW?SlZEUPY?+nS%61We29>AY~>%P1MyC7G3Yu4SIT=tgn@5F@FCeL8ztVmXUkPry-L>PT?qhzTIJ{0cBeab@Q{ zCZ0S5Ky(f0PgIoAQCdMsRJlnIiMnV>5nFzR7(gtU+o0O&9)`2y9XxU8@DsMXu8d6b z0?nL7tPc<~Z~A+yV4$$Be*=#2C(B!#17^;Gna;yZ=TWn_g&j6?RzA37ASNWmM=QKT?!Du00eB+MqoJ=8YxXvoFFPK(*jBBLCcdm*1%wSZ&tKGz zeKfF(K*^#)>k+||MbBkI!$wcX7)9*Svf^zEdAk&fsO7EAfoq&ws>q_B1?!6lFNiUnlDiyc&SIK8oE=9w z%UR>#7|in*eKqq@I%s*R;1hTOp4G{?ap401Aog_*Wzso_l!b>P#B-nF>^N%nHfr{E zpxek|F1uyT-ezlLq)}_*tdRFEIv1NvISH>PyX(xl=ngs7RkCQwb%I2bpHG*^2`)*K zS8pM$gkP)4x^j*Z#I=oB5R+OrkW52i&;F?&L95x z1ow`=4VN5CUEMqL_x;y+8(&^2B5#+Fw@b|ZQLQs;Rz^u)*8qqOy%uPS_KCpjd<#0L z#8=e@_tGO8-KSG2QC`l9mwO)4)N-2>ecil#gy92%&$={=y?6XAt|gM;-BLA&O@(Z3JAo}h47K2QRygelHp{gurWCkcug@otF0Bw zO9he|$S&%gFU}QMlae+T%yb^b>@3Pl1*JZ=*AHvaWu>H*NvPJlWk7l2WTvpcL!NhI za)vb%BS9B@8WlL!Rou8hg2(BX@38Q!BpQU~xk6dk;#`3pp)fc`4$T7#Z;n*tSL=){ zh6o)CBaw7(Id9+?qeA7tgKjEKyu-GUS`tQ+QzaCceF z!7iz7Uv51W+bCbTOw%~1Haqe12~x}IGL%?L+~Q2!^D$^ge=81I%{av z{ss`Zsja-IrG~{GJqAWH05s95TF1uZ4BJu17;R?iDhu@BSXY|?LPc7DPKI%vz&@Mq z?+GCg%EA_&l>$RK0Kew6!2XV_w@6j_04--W8IH&ofelNJW_ z%~B`tCV9w<2_lOh9{`lZX~w5G`Q5zM)kC*mqP#K-TR+kwN2|uc&I)00000NkvXXu0mjfmwuG* literal 0 HcmV?d00001 diff --git a/mysite/taskSuggester.py b/mysite/taskSuggester.py index b88b238d..337ae31a 100644 --- a/mysite/taskSuggester.py +++ b/mysite/taskSuggester.py @@ -34,6 +34,7 @@ gallery, zenith_market, research, + dancing_coral, ) logger = get_logger(__name__) @@ -175,6 +176,7 @@ def main(inputData, source_string, runType="web"): research.get_section(), advice_fish.get_section(), zenith_market.get_zenith_market_section(), + dancing_coral.get_dancing_coral_section(), clam_work.get_section(), ] ] diff --git a/mysite/utils/image_tools/sprite_extractor/sprite_extractor_dict.py b/mysite/utils/image_tools/sprite_extractor/sprite_extractor_dict.py index 0db79b66..8142fe7a 100644 --- a/mysite/utils/image_tools/sprite_extractor/sprite_extractor_dict.py +++ b/mysite/utils/image_tools/sprite_extractor/sprite_extractor_dict.py @@ -72,5 +72,11 @@ class SpritesheetDefinition(TypedDict): "rows": 4, "num_sprites": 14, "as_gif": True + }, + "sprite-673-27.png": { + "base_file_name": "DancingCoral", + "columns": 3, + "rows": 3, + "num_sprites": 1 } } diff --git a/mysite/w7/coral_reef.py b/mysite/w7/coral_reef.py index c63010fe..624fd48b 100644 --- a/mysite/w7/coral_reef.py +++ b/mysite/w7/coral_reef.py @@ -64,12 +64,10 @@ def get_sources_of_coral_info_group() -> AdviceGroup: ) multi_group_d_advice.append(coral_kid_advice) - # TODO: Dancing Coral bonus - dancing_coral_advice = Advice( - label="Dancing Coral Bonus (WIP)", - picture_class="coming-soon" - ) + dancing_coral_bonus = session_data.account.dancing_coral[0] + dancing_coral_advice = dancing_coral_bonus.get_advice() multi_group_d_advice.append(dancing_coral_advice) + multi_group_d_value += dancing_coral_bonus.value # TODO: Clamwork bonus clamwork_advice = Advice( diff --git a/mysite/w7/dancing_coral.py b/mysite/w7/dancing_coral.py index f87f5c14..0fe5be2d 100644 --- a/mysite/w7/dancing_coral.py +++ b/mysite/w7/dancing_coral.py @@ -1 +1,43 @@ -# TODO \ No newline at end of file +from models.advice.advice import Advice +from models.advice.advice_group import AdviceGroup +from models.advice.advice_section import AdviceSection +from models.general.session_data import session_data + + +def get_bonuses_info_group() -> AdviceGroup: + advices: list[Advice] = [ + bonus.get_advice() for bonus in session_data.account.dancing_coral.values() + ] + + for advice in advices: + advice.mark_advice_completed() + + return AdviceGroup( + pre_string='Bonuses', + advices=advices, + tier='', + informational=True + ) + + +def get_dancing_coral_section(): + if session_data.account.highest_world_reached < 7: + dancing_coral_AdviceSection = AdviceSection( + name='Dancing Coral', + tier='Not Yet Evaluated', + header='Come back after finding the Dancing Coral in Barnacle Curb!', + picture='extracted_sprites/DancingCoral0.png', + unreached=True, + ) + return dancing_coral_AdviceSection + + groups = [get_bonuses_info_group()] + return AdviceSection( + name='Dancing Coral', + tier='', + header='Dancing Coral', + picture='extracted_sprites/DancingCoral0.png', + groups=groups, + informational=True, + unrated=True, + ) diff --git a/mysite/w7/zenith_market.py b/mysite/w7/zenith_market.py index 6bb8c358..d4670aa4 100644 --- a/mysite/w7/zenith_market.py +++ b/mysite/w7/zenith_market.py @@ -5,12 +5,16 @@ def get_upgrades_info_group() -> AdviceGroup: - upgrade_advice: list[Advice] = [ + advices: list[Advice] = [ upgrade.get_advice() for upgrade in session_data.account.zenith_market.values() ] + + for advice in advices: + advice.mark_advice_completed() + return AdviceGroup( pre_string='Upgrades', - advices=upgrade_advice, + advices=advices, tier='', informational=True ) From af132b2820d9f04ad382f667ecad3aeecbe6a37a Mon Sep 17 00:00:00 2001 From: TwoSpookyBoos Date: Sat, 23 May 2026 07:29:07 -0500 Subject: [PATCH 3/7] Autogenerate final difficulty group of Expected but not Rated Gstackables * Remove warning log from consts_general when gstack_expected_not_rated exist * Update manage_consts.finalize_general_greenstacks to Autogenerate final difficulty group of Expected but not Rated Gstackables * Add new proper pinchy Progression Tiers for Gstacks --- mysite/consts/consts_general.py | 14 ++++++-------- mysite/consts/manage_consts.py | 17 +++++++++++++---- mysite/consts/progression_tiers.py | 4 +++- mysite/general/greenstacks.py | 2 +- 4 files changed, 23 insertions(+), 14 deletions(-) diff --git a/mysite/consts/consts_general.py b/mysite/consts/consts_general.py index 6d66ae3e..081653d7 100644 --- a/mysite/consts/consts_general.py +++ b/mysite/consts/consts_general.py @@ -2,6 +2,7 @@ from consts.idleon.lava_func import lava_func from utils.logging import get_consts_logger from utils.number_formatting import parse_number +from utils.text_formatting import getItemDisplayName logger = get_consts_logger(__name__) @@ -327,14 +328,14 @@ 'FoodPotYe5', 'Leaf5', # W5 'Leaf6', # W6 'EquipmentStatues7', 'EquipmentStatues3', 'EquipmentStatues2', 'EquipmentStatues4', 'EquipmentStatues14', # 'W1' statues, some in W1-W3 - 'EquipmentStatues1', 'EquipmentStatues5', # Plausible but time consuming + 'EquipmentStatues1', 'EquipmentStatues5', 'EquipmentStatues10', 'EquipmentStatues12', 'EquipmentStatues13', 'EquipmentStatues8', 'EquipmentStatues11', # W2 statues are all slower than Power/Health 'rtt0', 'StoneZ1', 'StoneT1', 'StoneW1', 'StoneA1', 'StoneHelm1', #W1 Slow drops = Town TP + Stones 'StoneT2', 'StoneZ2', 'StoneW2', 'StoneA2', # W2 upgrade stones and Mystery2 'PureWater', 'EquipmentStatues18', #W3 Slow drops = Distilled Water + EhExPee Statue 'EquipmentStatues20', 'EquipmentStatues21', 'EquipmentStatues22', # W4 Statues 'EquipmentStatues23', 'EquipmentStatues24', 'EquipmentStatues25', 'FoodG9', 'StoneZ3', #W5 Slow drops = Golden W5 Sammy + Statues - # 'FoodG11', 'FoodG12' #W6 gold foods + 'FoodG11', 'FoodG12' #W6 gold foods ], 'Printable Skilling Resources': [ 'OakTree', 'BirchTree', 'JungleTree', 'ForestTree', 'ToiletTree', 'PalmTree', 'StumpTree', 'SaharanFoal', # Logs1 @@ -388,8 +389,8 @@ 'EquipmentStatues9', 'EquipmentStatues15', 'EquipmentStatues16', 'EquipmentStatues17', 'EquipmentStatues19', 'EquipmentStatues26', 'EquipmentStatues27', 'EquipmentStatues28', 'EquipmentStatues29', 'EquipmentStatues30', 'EquipmentStatues31', 'EquipmentStatues32', - 'Cutter', 'OilBarrel2', 'Sewers1b', 'TreeInterior1b', 'FoodPotRe2', 'FoodPotRe1', # W1 Rare Drops - 'DesertC2b', 'DesertA3b', 'DesertA1b', 'MidnightCookie', # W2 Rare Drops + 'Cutter', 'OilBarrel2', 'Sewers1b', 'TreeInterior1b', 'FoodPotRe2', 'FoodPotRe1', 'Key1', # W1 Rare Drops + 'DesertC2b', 'DesertA3b', 'DesertA1b', 'MidnightCookie', 'Key2', # W2 Rare Drops 'Quest78', 'SnowC4a', 'SnowB2a', 'SnowA2a', 'FoodHealth9', 'FoodPotMana3', 'FoodPotGr3', 'Key3', # W3 Rare Drops # W4 'GalaxyC1b', 'GalaxyA2b', 'Key4', 'PetEgg', @@ -398,7 +399,6 @@ # W5 'LavaA1b', 'LavaA5b', 'LavaB3b', 'Key5', 'Line4', 'Weight9', 'EfauntDrop1', 'EfauntDrop2', 'Chiz0', 'Chiz1', 'TrollPart', 'KrukPart2', # Basic Efaunt material - # 'Key2', # Efaunt key 'SpiA2b', 'SpiB2b', 'Quest95', #W6 Rare Drops 'FoodG1', 'FoodG2', 'FoodG3', 'FoodG4', 'FoodG5', 'FoodG6', 'FoodG7', 'FoodG8', 'FoodG10', # Gold Foods 'FoodG11', 'FoodG12', 'FoodG13', 'FoodG14', 'FoodG15', 'ButterBar', # Gold Foods @@ -450,9 +450,7 @@ gstack_rated_not_expected = [item for item in gstacks_rated_items if item not in gstackable_codenames_expected] if len(gstack_rated_not_expected) > 0: logger.warning(f"{len(gstack_rated_not_expected)} Rated but not Expected Greenstacks found: {gstack_rated_not_expected}") -gstack_expected_not_rated = [item for item in gstackable_codenames_expected if item not in gstacks_rated_items] -if len(gstack_expected_not_rated) > 0: - logger.warning(f"{len(gstack_expected_not_rated)} Expected but not Rated Greenstacks found: {gstack_expected_not_rated}") +gstack_expected_not_rated = {item:getItemDisplayName(item) for item in gstackable_codenames_expected if item not in gstacks_rated_items} gstack_unique_expected = set() gstack_duplicate_expected = set() for item_name in gstackable_codenames_expected: diff --git a/mysite/consts/manage_consts.py b/mysite/consts/manage_consts.py index 3131679f..d9b8f8d2 100644 --- a/mysite/consts/manage_consts.py +++ b/mysite/consts/manage_consts.py @@ -3,7 +3,7 @@ # instead of once per profile/data submit. from consts import consts_w2, progression_tiers -from consts.consts_general import gstack_unique_expected, cardset_names, max_card_stars +from consts.consts_general import gstack_unique_expected, cardset_names, max_card_stars, greenstack_item_difficulty_groups, gstack_expected_not_rated from consts.consts_item_data import ITEM_DATA from consts.w1.stamps import unavailable_stamps_list, stamp_maxes from consts.consts_w2 import max_maxable_vials @@ -20,15 +20,24 @@ def finalize_consts(): finalize_w2_vials() def finalize_general_greenstacks(): + #Update consts_general.greenstack_item_difficulty_groups with a final group with all currently unclassified items try: - assert greenstack_progressionTiers[5]['Required Stacks'] == len(gstack_unique_expected) + next_tier = 1 + max(greenstack_item_difficulty_groups.keys()) + greenstack_item_difficulty_groups[next_tier] = {"Needing to be properly tiered": list(gstack_expected_not_rated.keys())} + logger.debug(f"Successfully created additional GStack tier containing {len(gstack_expected_not_rated)} items: {greenstack_item_difficulty_groups[next_tier]}") + except Exception as e: + logger.exception(f"Failed to construct final GStacks tier") + + #Log error if the GStack item counts are out of sync between dict and progressionTier + try: + assert greenstack_progressionTiers[max(greenstack_progressionTiers.keys())]['Required Stacks'] == len(gstack_unique_expected) except AssertionError: logger.error( f"Total number of Expected GStacks not in sync between " - f"tier {greenstack_progressionTiers[5]['Required Stacks']} and " + f"tier {greenstack_progressionTiers[max(greenstack_progressionTiers.keys())]['Required Stacks']} and " f"list {len(gstack_unique_expected)}" ) - greenstack_progressionTiers[5]['Required Stacks'] = max(greenstack_progressionTiers[5]['Required Stacks'], len(gstack_unique_expected)) + greenstack_progressionTiers[max(greenstack_progressionTiers.keys())]['Required Stacks'] = max(greenstack_progressionTiers[max(greenstack_progressionTiers.keys())]['Required Stacks'], len(gstack_unique_expected)) def finalize_general_cards(): try: diff --git a/mysite/consts/progression_tiers.py b/mysite/consts/progression_tiers.py index bfc144f5..c2ca2abc 100644 --- a/mysite/consts/progression_tiers.py +++ b/mysite/consts/progression_tiers.py @@ -138,7 +138,9 @@ 2: {'Dream Number': 12, 'Required Stacks': 75}, 3: {'Dream Number': 29, 'Required Stacks': 200}, 4: {'Required Stacks': 250}, - 5: {'Required Stacks': 320} + 5: {'Required Stacks': 300}, + 6: {'Required Stacks': 350}, + 7: {'Required Stacks': 400} } achievements_progressionTiers = { 0: {}, diff --git a/mysite/general/greenstacks.py b/mysite/general/greenstacks.py index 44b7a7ea..66cb84f6 100644 --- a/mysite/general/greenstacks.py +++ b/mysite/general/greenstacks.py @@ -257,7 +257,7 @@ def getGStackAdviceSections(): #Equinox Dream Review overall_SectionTier = 0 - optional_tiers = 2 + optional_tiers = 4 true_max = max(greenstack_progressionTiers.keys(), default=0) max_tier = true_max - optional_tiers dream_advice = {} From 3dcb245c026b43b086c4480ed0728f9120cdfc64 Mon Sep 17 00:00:00 2001 From: nevar Date: Mon, 25 May 2026 11:25:02 +0700 Subject: [PATCH 4/7] Add icon for new greenstackable items * Add Mystery Upgrade Stone IV, Zenith Cluster, Small Experience Balloon as greenstackable * Add icon for item that miss it in green stack sections * Fix Kruker Stamp image * Fix image for Spelunky Page card and Trench Card * Fix Clam Work Class Exp image --- mysite/consts/consts_general.py | 7 ++++--- mysite/consts/w7/clam_work.py | 2 +- mysite/models/w7/zenith_market.py | 2 +- mysite/static/assets/_boss-keys.scss | 12 ++++++------ mysite/static/assets/_cards.scss | 4 +++- mysite/static/assets/_slab-items.scss | 8 ++++++-- mysite/static/assets/_zenith_market.scss | 2 +- mysite/static/imgs/data/2CardsF49.png | Bin 0 -> 1474 bytes mysite/static/imgs/data/2CardsF50.png | Bin 0 -> 1476 bytes mysite/static/imgs/data/Bkey1.png | Bin 0 -> 1097 bytes mysite/static/imgs/data/Bkey2.png | Bin 0 -> 863 bytes mysite/static/imgs/data/Bkey3.png | Bin 0 -> 889 bytes mysite/static/imgs/data/Bkey4.png | Bin 0 -> 897 bytes mysite/static/imgs/data/Bkey5.png | Bin 0 -> 924 bytes mysite/static/imgs/data/Key1.png | Bin 1142 -> 0 bytes mysite/static/imgs/data/Key2.png | Bin 1223 -> 0 bytes mysite/static/imgs/data/Key3.png | Bin 1145 -> 0 bytes mysite/static/imgs/data/Key4.png | Bin 952 -> 0 bytes mysite/static/imgs/data/Key5.png | Bin 1076 -> 0 bytes mysite/static/imgs/data/skill_resource/Bug15.png | Bin 0 -> 456 bytes .../imgs/data/skill_resource/Prehistrium.png | Bin 0 -> 901 bytes .../imgs/data/skill_resource/PrehistriumBar.png | Bin 0 -> 777 bytes .../static/imgs/data/skill_resource/Tree14.png | Bin 0 -> 780 bytes mysite/static/items.yaml | 2 +- 24 files changed, 23 insertions(+), 16 deletions(-) create mode 100644 mysite/static/imgs/data/2CardsF49.png create mode 100644 mysite/static/imgs/data/2CardsF50.png create mode 100644 mysite/static/imgs/data/Bkey1.png create mode 100644 mysite/static/imgs/data/Bkey2.png create mode 100644 mysite/static/imgs/data/Bkey3.png create mode 100644 mysite/static/imgs/data/Bkey4.png create mode 100644 mysite/static/imgs/data/Bkey5.png delete mode 100644 mysite/static/imgs/data/Key1.png delete mode 100644 mysite/static/imgs/data/Key2.png delete mode 100644 mysite/static/imgs/data/Key3.png delete mode 100644 mysite/static/imgs/data/Key4.png delete mode 100644 mysite/static/imgs/data/Key5.png create mode 100644 mysite/static/imgs/data/skill_resource/Bug15.png create mode 100644 mysite/static/imgs/data/skill_resource/Prehistrium.png create mode 100644 mysite/static/imgs/data/skill_resource/PrehistriumBar.png create mode 100644 mysite/static/imgs/data/skill_resource/Tree14.png diff --git a/mysite/consts/consts_general.py b/mysite/consts/consts_general.py index 081653d7..4b816886 100644 --- a/mysite/consts/consts_general.py +++ b/mysite/consts/consts_general.py @@ -326,7 +326,7 @@ 'FoodHealth10', 'FoodPotOr3', 'FoodPotYe2', 'Leaf3', # W3 'FoodPotMana4', 'Leaf4', # W4 'FoodPotYe5', 'Leaf5', # W5 - 'Leaf6', # W6 + 'Leaf6', 'StoneZ4', # W6 'EquipmentStatues7', 'EquipmentStatues3', 'EquipmentStatues2', 'EquipmentStatues4', 'EquipmentStatues14', # 'W1' statues, some in W1-W3 'EquipmentStatues1', 'EquipmentStatues5', 'EquipmentStatues10', 'EquipmentStatues12', 'EquipmentStatues13', 'EquipmentStatues8', 'EquipmentStatues11', # W2 statues are all slower than Power/Health @@ -405,9 +405,10 @@ # World 7 part 1 'Coral1', 'Coral2', 'Coral3', 'w7A6', # World 7 part 2 - 'Coral4', 'w7B1b', + 'Coral4', 'w7B1b', 'Quest110' ], 'Boss Drop': [ + 'ExpBalloon1', 'KrukPart', 'StoneA6', 'StoneW7', 'StoneT6', 'StoneHelm7' ], 'Cheater': [ @@ -426,7 +427,7 @@ 'FoodEvent1', 'FoodEvent2', 'FoodEvent3', 'FoodEvent4', 'FoodEvent5', 'FoodEvent6', 'FoodEvent7', 'FoodEvent8', # Event Foods 'Pearl1', 'Pearl2', 'Pearl3', 'Pearl4', 'Pearl5', 'Pearl6', # Skilling Speed Pearls, EXP pearls 'Line1', 'Line2', 'Line5', 'Line6', 'Line7', 'Line9', 'Line10', 'Line11', 'Line14', # Fishing Lines - 'ExpBalloon1', 'ExpBalloon2', 'ExpBalloon3', # Experience Balloons + 'ExpBalloon2', 'ExpBalloon3', # Experience Balloons 'Timecandy1', 'Timecandy2', 'Timecandy3', 'Timecandy4', 'Timecandy5', 'Timecandy6', 'Timecandy7', 'Timecandy8', 'Timecandy9', # Time Candies 'Whetstone', 'Quest72', 'Quest73', 'Quest76', 'Quest77', # Other Time Skips 'Quest70', 'Quest71', 'Quest75', 'Gfoodcoupon', 'ItemsCoupon1', 'ItemsCoupon2', # Loot Bags diff --git a/mysite/consts/w7/clam_work.py b/mysite/consts/w7/clam_work.py index 9714fcda..ddbd2ea7 100644 --- a/mysite/consts/w7/clam_work.py +++ b/mysite/consts/w7/clam_work.py @@ -7,5 +7,5 @@ "coral", "coral-0", "gallery", - "summoning-class-exp", + "ballot-15", ] diff --git a/mysite/models/w7/zenith_market.py b/mysite/models/w7/zenith_market.py index cd8fff59..55106803 100644 --- a/mysite/models/w7/zenith_market.py +++ b/mysite/models/w7/zenith_market.py @@ -34,7 +34,7 @@ def get_advice(self): return Advice( label=f"{self.name}:
{description}", picture_class="zenith-market", - resource="zenith-crystal", + resource="zenith-cluster", progression=self.level, goal=self.max_level, ) diff --git a/mysite/static/assets/_boss-keys.scss b/mysite/static/assets/_boss-keys.scss index 6bdcc0cb..d488a31d 100644 --- a/mysite/static/assets/_boss-keys.scss +++ b/mysite/static/assets/_boss-keys.scss @@ -1,7 +1,7 @@ $boss-keys: ( - forest-villa-key: img("data/Key1.png"), - efaunts-tomb-key: img("data/Key2.png"), - chizoars-cavern-key: img("data/Key3.png"), - trolls-enclave-key: img("data/Key4.png"), - kruk-s-volcano-key: img("data/Key5.png"), -); \ No newline at end of file + forest-villa-key: img("data/Bkey1.png"), + efaunt-s-tomb-key: img("data/Bkey2.png"), + chizoar-s-cavern-key: img("data/Bkey3.png"), + troll-s-enclave-key: img("data/Bkey4.png"), + kruk-s-volcano-key: img("data/Bkey5.png"), +); diff --git a/mysite/static/assets/_cards.scss b/mysite/static/assets/_cards.scss index 3688af4e..f86abc11 100644 --- a/mysite/static/assets/_cards.scss +++ b/mysite/static/assets/_cards.scss @@ -148,6 +148,8 @@ $hard-resources: ( litterbug-card: img('data/2CardsF46.png'), tuttle-card: img('data/2CardsF47.png'), one-way-opening-card: img('data/2CardsF48.png'), + plunder-cranny-card: img('data/2CardsF49.png'), + kelp-forest-card: img('data/2CardsF50.png'), ); $hyperion-nebula: ( hyperion-nebula: img('data/CardSet6.png'), @@ -217,7 +219,7 @@ $shimmerfin-deep: ( spearfish-card: img('data/2CardsJ10.png'), coralcave-crab-card: img('data/2CardsJ11.png'), coralcave-guardian-card: img('data/2CardsJ12.png'), - trench-fish-card: img('data/2CardsJ13.gif'), + trench-fish-card: img('data/2CardsJ13.png'), boomy-mine-card: img('data/2CardsJ14.png'), pirate-underling-card: img('data/2CardsJ15.png'), eggroll-card: img('data/2CardsJ16.png'), diff --git a/mysite/static/assets/_slab-items.scss b/mysite/static/assets/_slab-items.scss index c2684722..b603f40f 100644 --- a/mysite/static/assets/_slab-items.scss +++ b/mysite/static/assets/_slab-items.scss @@ -18,6 +18,7 @@ $resources: ( dreadlo-ore: img('wiki/Dreadlo_Ore.png'), godshard-ore: img('wiki/Godshard_Ore.png'), motherlode-ore: map-get($motherlode-resources, motherlode-ore), + prehistrium-ore: img('data/skill_resource/Prehistrium.png'), // Bars copper-bar: img('wiki/Copper_Bar.png'), iron-bar: img('wiki/Iron_Bar.png'), @@ -30,6 +31,7 @@ $resources: ( dreadlo-bar: img('wiki/Dreadlo_Bar.png'), marble-bar: img('wiki/Marble_Bar.png'), godshard-bar: img('wiki/Godshard_Bar.png'), + prehistrium-bar: img('data/skill_resource/PrehistriumBar.png'), // Logs oak-logs: img('wiki/Oak_Logs.png'), bleach-logs: img('wiki/Bleach_Logs.png'), @@ -48,6 +50,7 @@ $resources: ( bamboo-logs: img('wiki/Bamboo_Logs.png'), effervescent-logs: img('wiki/Effervescent_Logs.png'), everlog: img('wiki/Everlog.png'), + seaweed-logs: img('data/skill_resource/Tree14.png'), // Leaves grass-leaf: img('wiki/Grass_Leaf.png'), twisty-leaf: img('wiki/Twisty_Leaf.png'), @@ -85,6 +88,7 @@ $resources: ( ladybug: img('wiki/Ladybug.png'), firefly: img('wiki/Firefly.png'), fractal-fly: img('wiki/Fractal_Fly.png'), + litterbug: img('data/skill_resource/Bug15.png'), // Critters froge: map-get($world-contents, froge), poison-froge: img('wiki/Poison_Froge.png'), @@ -1114,7 +1118,7 @@ $stamps: ( atomic-stamp: img('data/StampC23.png'), cavern-resource-stamp: img('data/StampC24.png'), study-hall-stamp: img('data/StampC25.png'), - krunker-stamp: img('data/StampC26.png'), + kruker-stamp: img('data/StampC26.png'), corale-stamp: img('data/StampC27.png'), ); @@ -1201,7 +1205,7 @@ $misc: ( urie-s-special-childhood-rock: img('data/Quest106.png'), stamina-battery: img('data/Quest108.png'), cropfall-basket: img('data/Quest109.png'), - zenith-crystal: img('data/Quest110.png') + zenith-cluster: img('data/Quest110.png') ); $all-slab: map-merge($resources, $monster-drops); diff --git a/mysite/static/assets/_zenith_market.scss b/mysite/static/assets/_zenith_market.scss index e2963c82..f0a5dab8 100644 --- a/mysite/static/assets/_zenith_market.scss +++ b/mysite/static/assets/_zenith_market.scss @@ -1,5 +1,5 @@ @import "slab-items"; $zenith-market: ( - zenith-market: map-get($all-slab, zenith-crystal), + zenith-market: map-get($all-slab, zenith-cluster), ); diff --git a/mysite/static/imgs/data/2CardsF49.png b/mysite/static/imgs/data/2CardsF49.png new file mode 100644 index 0000000000000000000000000000000000000000..0042db41ab532511c923cad7828391f3935eb3d8 GIT binary patch literal 1474 zcmV;z1wHzSP)Px)d`Uz>RA_AdxZ~r44$q&9zzz8sT09y-L0J_Trr9w)4H`?02_& zO}b~#o6GtCyZh`p-*e9I+)yME0RZ&%^(Bx)ibNtI0J!N!Kgjh~2tWb=5{aAwh)^g5 z_&{*B%y?l}^gn%o{cRhk)vmtdLu>vAJL-(Ie*~$e6_M*QV13CPBYovao3&ov!Uv4> z)!_jnonL8^cMm^1$0Va?o(HRdWG{JZ*J8|)) zvRjRGeq{#$;Nund>ztzifFokl0CTf8Ed(J1mj79nR#&YiUJ@5&qo`L!wlK;aboA#v%!Lv=fibZpt( z*7p7pOla@Lvm6KMndy2^u4L9mUp3NAmCXQv=l7WHJS3>WB{KA2^UB)+%PcBMOm!v0 z_OhRcRy}BK=OaPw!3^V|OH=irBt@M+JD65`{|II)4oam)T))rrX5=+?Vp~U@t~G74o-DH*tX_Q z)n1dM!pjSc^w9gwX1ONnBIlY#)0KY&}Lg9Ly5mu2b zEc!eCg=$|BFfPea-NP3E09~S$dqBhs6iVDeLYl;o2n zwI?Y_uI8Jc007l5zH1#W=Lx2~AFOWJ3jnyU^eLm_8ykuM%ZW0{$ukofza-Jkt&6P> z#MzdjcMJ0FHS$UBl>?*Z^Xc#5@B2ai1sD%I>K3ScO-`Oq2Aw!la;4IviISuwCpCWc z8~~uP|8D?5TXY1NKyH0;p0!=h6HM{o(;L;=@JO@;u#j_k&9!fn+?T@agU@(Fo+!M(VH`~Xm95h zBP~g|;@)({l@HgRB?!vKJ?K$_O&8#?SmM74k?oqcTR&O)=3-TQIcf4gmQbC@h=+%LFbFJn65$tx53la&C zB*pe5DR<J`_`D^7+D3ntO cz4;aPKPa4c>~Ra%QUCw|07*qoM6N<$f)_mFp8x;= literal 0 HcmV?d00001 diff --git a/mysite/static/imgs/data/2CardsF50.png b/mysite/static/imgs/data/2CardsF50.png new file mode 100644 index 0000000000000000000000000000000000000000..2330e529b6dc2348cef5abd60bcbc3430bd7671c GIT binary patch literal 1476 zcmV;#1v~nQP)Px)en~_@RA_iH3yQ@UqOmJR5+3@X@rhz=YnK@_AZ@;odskVq62 zKzN=9xInN>o_J|*_ka2TpSEqDRk=^T+N7lireXkqW07;(dG`oXi|WERWXz9cKlUn*kR2u7Xk6=8mTGN^7ctLNpW$|5rftVy^lf15FgF2Gz z2RnZT05mQ6!*c+s3Z*Bweu-k+}3=_4WZRy`V~Yut}76k6^<0UcA8lAU!i%56Y3uxr4P@`qA1R z^&z5{bC949E|I4PU$4C%FtnnQM6M$lmY4M`ZJ1*$=ORJhgL(FYHs$I;Ns1ckpV89u zEalxJSg3wbDqC_Kv1Dv@{r;3BfBM1vi*t`);K5n;gFBvkK-J?%=`MC(1OQy|^D7$9 z8_P*@Hqn#PgEqNHP#trf54Np;P?Z<))yl{8QGQGW?QBFTTPvEa+#?vzu^-%3{}2G+ z+J$S{`N{9}s8{Tgid$ASR%!Vp8X8sQ`|&-H#*5N>zYqVd?tl3o)tulY`!7AM}j=^{I;!rL6WS~$w+ds=m`M8x~(4??^pB$Q`QI9ZTScQuwcnE0Dz9j zBU*t!6Y9;%5k;mE$nDLKYw3WL5L;V{-tD;pT-}{@7<@+WC?P<=QvN$n`iIQOZV6l3rWqd-|k0kYKjt z=uw;8BPb>3W0}ZNGNxji*YUbw?Adj|cpa53IjTg^wlGR) z?if0JRE_S>)*l0s*3@lk*gqFYB15lA;=znOls-B}a{D5Cfus?P6iH8)mExjG=X<9B z0270X99L##tH>2rlIwlzx~gEm-dbkz9Orl3WkFITXOoN=RII8nUgsV`#x^85DY>tO z>3}2^QiMs8#D<`kmos&Wr1tq~dXxPjM?SI3F=Ki62ug8hQjmt8UM*H|Q#|P_XkBa6 z*wYqUv3bu%lJVH7-=>V^+$Cu9gp?$FoDl%OH6_WGgMPk0hOHh}tuV>G+^$xkTH96J zG!w}&(TdvS9>Mu7iva-Ro$AfX5e(nBP4{>z#=?jIcN5C~kY3##Rpo4JA)GbHelK{Q zOXk*-a*yD6=eIyoKgh8tm1#^$!W`)^Jyer^uUdRs#Znq~TmS&HzPm`vXX|MrIdOHu zc)sWfrbN|NJ=*~QIP>+}K=Lj@Uy`WIXX{IH%;$M}kFyBYx9QDq(mv?t?=8vd3pp26 zOCeaZW)A?MV!ryVfARj(oGP>tm19?u+xSNMHTrCIWn8tk!za`)&l!SgcHOIf>4n!u zbE@#m`enxRv8bMAy@lEn$LE$RdV(n)Twd3Hv!5w1jhs}^?~Dga{{a2JtBn6v_B^ks e5IXZO?0*5SCVwrRlE_g20000Px(14%?dR9J=WmS0F)R~*MbDXy#!CM+u|!LWzn97I-bo(H2u!LiC9SzjVfhU_5@ zDSd7CkcTqx$%mr%K^%mTK-tX5rfgt>2=+CXh6qu|9+nbnFiPx03oE&MxIM>{^yZJ! zKWy|1fp~JR=X1a3`}>^(Z}nFH1Npoj)93Y=Zxq6%X{Px2ydHCR;vHX??tAA8nKkYbWpPedo4~4 z9v)EGT;TSNJ92#Y5eyGt3wGgELkXb0t#!bHm=0KCI)%*zM8>*y%B5*C zlr_U}H2-b)jL+*a3!4i7+`e&#>7WL{ttEqErOKC|yf5dfj&*cOR81}yA(x8~$vS0L z#Fz?b2eh}f-T;)T_pnncJJR{8oF7XW@_SpS)XG^tPROvT3WY0t``#pezb+kX1`?qb z4ymE`c|GRDgCSOvee8{Y#mLp0^mGC`g|UF1Zl69fxm31(3nyN1NMuL=#Zm@8%*rh? z1=z#O{qp5FYU7mH9zAdZfGF#4e)&M!EUKp-cLT6Lc0{pK#SZA!lELtR^}p?^O|19Z zm3?+fWk<{Hb7`8{ydCOdD%Aei5kKGi9-yJ@1^m#4o5ZY#%-B0E`;)p}$Lg~KQWftV zVd`-~x}eV4eFT|$k91prLF;Y~9r{!=P%xSyov%`lyZPz!kLA|Y<8I=;BNAphs7WBT zUA+70Ge$T5>EuJ}pbM!$JEgM2uKdM<^{|_3$tSE`xk_na z%IEc%YIAE=C|qg#GQa*EmHn$`7!EyfLMU8851g=5Dmz*MwS`g@jAnRvxnG7+RHcwu z5a8nc{TFg~R&@n6@nDEZ)+xKW3U;zv#13@%I3ef5savg%BvlNEY;f06Q(? zW?h&%l7%4D4G?s2N|ZQQ8EVdvx=6EI^|+hWWM6|@-KwKgv6R7eAU$7|M?xzN9v(ED z{GE#7Oi(UOGbgf6VpE26E1l1DZGXIX1ZJ(gi6iPPYJ2v9l??$FjAj62e`&t>r=p{> z^3wUL>}%b=j8NO{(*q|A9##R%u~c+az?p#DD)o4oS(^i3(XT_P+_k%^Iv&WvwZyE4 zsmBF*m;(IuVU3k*cjYrPYjZ3gTi2N8JJw5q5@3<6Q?`VQ^Y^7YGi!5k)T|u=v9_+?dI34}`WbM?d8=tjH|L65D(JpBfT{9aa P00000NkvXXu0mjf2WJx{ literal 0 HcmV?d00001 diff --git a/mysite/static/imgs/data/Bkey2.png b/mysite/static/imgs/data/Bkey2.png new file mode 100644 index 0000000000000000000000000000000000000000..96b4149c424e76f295e03ca2309a4a5129639463 GIT binary patch literal 863 zcmV-l1EBngP)Px&8A(JzR9J=Wmc36?Q5eR5C{qWFEFH`(5Ew8WOow)mP!lETfD4rnak7hs_y;f$ zFqSZMa}f+n83-f|9}5mmFa!h#7#ascO>Cre>VkoxljJ&-_w?M$ZD|W-Fg#0}b3e}S zJnwVfbKzFEx?VNi`tSBKD~cd@t%d1aZ6dDflfIA-GB6$*xRUOY>uUu zdJKG>ZM+$A6N)5E9jqZxx=TeE@Olh-`U4cwc>wm0asc>%WPHd1*3eANP8XdKAb|Oe zZK6wucs&LHsZ5qaI!`h_gx_c}p^i++gZ3PV#3cdpb+)N%^BdbLLw=*hoEU5ez}MM^ ztJ@7gD3YknDS6SvV7r2|>(}qU3J8i$*nwnG(WOJnJ))YN@*6GYi@;qqVRY%x;+VdA zJwK^TR=E+1BXfVs>U( zEka89;N?@G)Hv;tsHuE9jD&Y}^a(nUo}ofI&+_h>0!n4Fq%v9l{P+%(8s}c_v`Kfo zDk!^40#``qado>%#)s6s0+z~T8HjDF?AU=Tsjilw?<&a+V3}0Un;mRt?Wc09E+}zH zFCAESj5sD>;*kCxeYXjGIk2ibx*QMkQdhT|oiDrUdQZ1o?XGe?Y%h1(G!WY~0g`he z-hKF5`=^VOOL~dK9VnI2$t5QZ2V2c@A9`0lW(w)NC0DW=FMF=imuFchX_RuJ+a;N@ zcjN2OrB3Oe8a@31)oY|<>tn9-TK_agxO;0n%Y)=K=JF`?&Y8JmA_?aUrQp zmfmn56NANH#^%cIG$&bZv_pMcS-%wMGMyac7#W+Z$*r>GtE6h+P7X>AUl~fk0P2CW p!$9SpR5g?xu3ps&bF2SC{{ZFy$*t-|9ESh^002ovPDHLkV1k0Rl2ZTx literal 0 HcmV?d00001 diff --git a/mysite/static/imgs/data/Bkey3.png b/mysite/static/imgs/data/Bkey3.png new file mode 100644 index 0000000000000000000000000000000000000000..861f838518779b80fcca9f0ba11b06249d6a3ce4 GIT binary patch literal 889 zcmV-<1BU#GP)Px&Gf6~2R9J=Wmp@1wQ5?s==`|TMq&K*n+#tc>$e<7xw=5!hlNJnx4jH5b;+#o3 zWo|$uLpF)fW{M>QB%4cxI*3D%3?W%MTr*@;!gaX*-o1PG?vjhuE`CAc{d{@%x$p1K zJ%LxfDw-6{v=z;?|2GGdqM7!k{a|0(4}oBBUK*$~Y_e;$P=*Zb#h^qWk__xcpcKut z)j}Cn>v692&k98atrp5GMqu=LcD#< z&p!dc1GX>}xgaZ40+NZq=u@VJpcKut(~TNB!zOz|f(uF)xkW&9oyzGbUHt~&x)lkE zZk}$`Jn_!3iS3(n4^Y21LBBU)U<7B?D@f&ZRINv3iy5{DfdLVmqLggkoMYS__%;Fn zK4s(X0ORg}ftA!ata=60Q7d+zKVvqgL$gyg;Hm7F)lh#@XKpC=^Q3 zOgp);i{!>Gi&09*5lSNuBvaLT^tJwU)QW8_?@8B7p$LfdaCe7nF~fc+Z3LDu47Lt% zX3zD>tuK89HcP&m5`n&c`v}0Tn|^P?93o|l8C;(@Py{ylae-8><^!W*rfb=&C$y$y zK!DTMR=olM%(ZMWgU!=C1EMY?rE)s!zOZ`&5~sp|#4fSwuz@oA&{=D5p61bByI}iJ zyuEfH1uCg=w1rrpQ)2$_^M{y@S}}g(>8KU6>J`?Rd^bHsq3N5qFae;t`A!<21uE89 zAQW{I;I_LsW5PrSH){K!bCl?OC{!w^vjR>SMj#jsR(?c8aW_bjPYL{~Al;}TTg*69 zTX+xhidtuLK_v{s8XJV9_xpEjR8Y!1!!)4SWyKr`idVug zd|)Jgs=I5PgBw32qrikhky~n^ECrK+l7m4H@nk5HdoI!exYK#*Xa~Q(d}r&Hj&?k7 zTgw-$OBZn}^b54H?4N-4+5!7rJOJ{8G-^G~gc9L+@i&?^R2OmURrBZ%jQ{GlyY)ob P00000NkvXXu0mjf%jTN5 literal 0 HcmV?d00001 diff --git a/mysite/static/imgs/data/Bkey4.png b/mysite/static/imgs/data/Bkey4.png new file mode 100644 index 0000000000000000000000000000000000000000..303113996f12a46c5940c45aa1e3907923f0956b GIT binary patch literal 897 zcmV-{1AhF8P)Px&J4r-AR9J=Wn7>OKVHn3hX$oR7(4kYH4K3PD5;RK?Lq`D;5Ba6ipNh!flTPW6G9lQ?5bH10{#fwHMv=4;bUGCoJbI*_O za~Jq;|E;?gxG6`mP{x$)ouic-^XqA`P{#bOnf6BobhBGG0hH>Wsk{~_i4H&_61R^Fn0idl=`CPgPhTvQ zF}0-TaI69Wj7Fo5?`G>NR4kM+bF<4W4h3kvvdVg8mE__yTh$_Y!$3=FE%kM~TQIVn zHw?$O8X-{Rpn?fjDz&7Bp2L*id_lF-7)h6&)5*;)+eIwh)|^Hvmh+vXl>imY^~!3C zKi`qklA3gk*$g)tjgqQP+R+gpup%X3iAWq3!b?Pb*OXcVqBG51wpA^*qzkMLlN!57 zqX2?_fDTS~_2c8ul_AaB#Y-d->}~r_?)aj*z5it6F5cR_3tr#ZHez)Q@m>1QiQq%+30o zy`O&ghN1AF14aPXE32*zA?hyXCY;bg_ifha=9$W z0FIn%wClEJyD(BJ5I`UhpwTD*P%33PeD%x*%NvGgq&hL*-B&2g69}C9DV4H7>-b1S z;-vZ~FYK^(=9<3d1xuwY!^3GBjkLZ0{_P&)Qv;Xv+ZmK7G@Pg8`Gn5Wngt>@J~hC* z7mrCq;+}(5Zm!c*I-mqd9TQ*)UUFiZrM2_O=udt#6!uhs$ zwzowN)F?@zs}FS|0bcFzW-aNH?g7B6WqVISax+Gdd;X%jws=8lAt9Px&R!KxbR9J=Wm(5QaK^Vp#nw}aHE(A;o2ZxBkkA7U%#Ate`#*37Cz6!EbtG?)yZHQV+Q@taBdsBV^A7n#%^LxT)&KO+JbciN@L7ejZXsr!pw{0{uuz^ z^VeTWuzQ^Z0w90@U^g)*O=(A<2q?_F0Dye4Dz#^MMG1CiQ05F}c?J1m6``O90FW!` z$dz;fxf-9A!0yCTW>XVTuB0pb_VsiN*p5E&mtuB0Q(yoihsiaz8asyL@-+fE+^vs0E=Y}cQ6pMFR{G);EK zZU|-ek<-+f6$*NkWp4t4oqrsmC_tEbrA%0r z74z#`Qrq{$8}UNTOwWy>8ktZ91OU(D@3FBkQECGroA$4$~ z%*OosR?|VP3uenux6xu`67%a@0;cWLr&2O7glPF#1Wg8pMBC3N4_g9INy=1)bJx*n z0gI7IaZi8tsBTcSd<*~>W-cuM`CZqpS`KavWtFixCLqY@^cyW7!xwYI7jxrd>Kir| zX4+8c$-woqc9n)2gf z`x1Bz>0CvtI}Z8vhzD&00vtSbv3&^uh)(p2ZHM+m^EO0P>2z#v2})zk*b8(i2dK6o zGWcGg3mRiat8mIg9su}aZUDfG@)eT%XCgznk}l5R81(|9UL2hkKrfMA@*}Px(FiAu~RCt{2nmtIBQ5eVnR|;}y$RVPoLCd9vcEKefsHqY`v8YQ9X0%2*mfSTW zhr&QZOVV1D0$T*vXs{u*T7rlMBN}QDZ^P^VUeDwCc+Y#iS8qMP<#OKlydU?T-+j(= zJ^)2g6h*05ay$J3RiG%!6@ABsN-q8%s7HgOAqGn$7Xbjr+Rp$0axGmvmFc^xK>_N? zpdtW#Dn9g9T6?@;lq)q!4GK^X1{DF|=4!ifaC+jPQSN;80RV96+(`hy=!*2+uYlF!yd$!AuR)Sv)+cKQWkp*hR*v&L~6LKuT+QYj{h z`{Y`>Xr|R9H7GzO2DviYT*~uN&tZ!b*-MdI!^!dKw~I;n%nAE-ym`PRH7Gz#YZ^w# zjP}uwaR5M}X&yj1Z@GG)$Eeqw>r4A=t2r|E5NQsC$^YjWE}(1 z7@5(!IN$vpK-nmdNnUeg?D3dm{T?)%@4bBbLUNHBlnq}mW|*_p7}K0T3-(*}41YDR z>mK($&z0v$b66hgPs&s6rC8$4YY2_Ts;`zB6vXx`8~;`IN<@yTFTXqjpxmNFj)m5r zG#TetI+CVi>_}@4V-D|2BF0*-@28n`7JUCx*MB)xtZ*4bbEYN-jq6;aa>Dx^olEXB z-hUVX@TOz0@!VLGEXNJhpa9XCbjTbRPxc=N0QCNPZya}x!U@gUl;;2_#}H`}(N&Ea zk!CdSHK#Q{W|U>7TFN*2lMluswmd}aNRc5MW5RuHYXE>#b4gj6R4HmufYkFr9&)nY_XD5CG0A?B+0i+sR88BmSE#);^-Y*ksP=MfA%r%b^q7-{F!ZBcTu21GG zIRGd$%|~U#Sy6)mM9)dfUJD{4l`SigGmd0s;5h(bbi>&EmA2Sds|spRfM|m}W_V5d z^6V*m=Ovtf+7x5Fu?X87dx#noAle|;9JH&Yv$k+UZ!+qa^GFt|y1zgT3J^3%j}O%0mN-?#dZ(W$cw^}3axU6pXia-Bq6P&B_F{5n zmCz&_Kw9%-hB2~ta;;+IXRaH^hswJ@$d2sDRf7V=tgITbiK`M^=aMU$eihV>iK@AF!dWV@@?;@NDl(B|poPLljSTQ5svR<}PAgag91dyAmUkv3f1>sN8~>1or*V!Z diff --git a/mysite/static/imgs/data/Key2.png b/mysite/static/imgs/data/Key2.png deleted file mode 100644 index 4581261e323b6972a2f9560f885de5063a3a264d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1223 zcmV;&1UUPNP)Px(fk{L`RCt{2n@@;URT#j3H(K-$%+WIGsnlR5r85H&vkA)0o?n**{voTVEd~*B82<85H1}F=%A40>HtEdIS8%gb<^Onq&qA z=z4>+ITyd#4#3jBO$!<~6`OKD12ZT<*Bb;l=J*h!-g^1<+A2RWwGkoB>>b;TxzJ}QF6TKP)_X8 z=14ZuXmbYF-4?F{9s9chttRQLCP;Q8`E1Of0G+IZGT+p;JwF0rlOC+x3cyeGe;NR9 zKDQKTjX8oCpv~F3VOa!l_~-=ydhfg$fZ0F(%X~f^!_1&IS+GGx-@MPH;enL^j7^=( zeZ#uGX=Wo&g{*mE)0zn2>u*mx_mS~^m9-fZpc64D^UdoDR*VvpUZ}2)06wXmX#mvU z-3H8?A!tMPzJI_OPxlk<-tm~zmh~TPl3KMOP99GbljmxtN$EZ&G58FZPHz5=&$b6v|H0me}>oLw7|-8#vWX0zA>u++}J&*5~e=Uo3g2FM#7kl(Bf}ktl+E?Faj$2L6 z>$%h;YnSDkBc$eZ5kO_vs8b=!x{{bPGFXW#=81alxPloJpq&_0DE5S6jm8&y#Gvm^ zTxjDF=h6FW?V2N)K>>m>=-%aVmy>gsJ90y9j7G9hDwdR*FQ#@yN|_^=K>>mWot(Su z%+~duw~j>`sf;CC`DW=ps(tZ_V{Ilsn_Vf)pa9q@WW7h%J9-_+R~PBs z1wrpJEH-9PfR-5a^rQCy@Wr9yZS7BqA=-qN3R+^4r=Kr2ZCDl0xsIMKyhGa&%%A|x z@3l7PuOqJj@WDGDWnSnrN;CZ0i$Q#rw)SPy?^h<288Pp{N zvshU=Wt14BF@w5lhfr^ l2Fqdw8HQmPhG7_){0}xB`htAC$S?o^002ovPDHLkV1lbkQNsWL diff --git a/mysite/static/imgs/data/Key3.png b/mysite/static/imgs/data/Key3.png deleted file mode 100644 index 8861db97bd363840e9cadfbe69aeb18e9b89e940..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1145 zcmV-<1cv*GP)Px(Gf6~2RCt{2n?Fd@VHn51KeZYH19fmY(U2&x27_AMTq4S;f+T2YkO*vUiYC_* zA{^Yppqea>mNu7y8cL`{GIVj!AfchsY&gH&z0ciq&-?q`opSPg7Vr1|{>uBg=Xu`u z{T<*qj^jAZO0w4v&?s7SBio`W0f4QQ*;LnQsn-MTSN5GjH0Raw^Pv4)&n13LWs)0Y zux|{~%puqAy#oNOO;4~X$|N_)py>^=%po+0#G2#=8MN*717wBfbltcE0GM3+0{|HB zI#Ad9xIqR@7lWiZ44h`{Yn(uwC-q2T(Lh zW-BdA5gCgJV-5Fr4EIJo51+#gGN_wDGS*0Qi0rZd?K|~Ke()-Q@;Zk--+#Ql;`xj< z9AokR^7zHi8&#jn4N6JP25DJ_Ju1KRM4Ci{kd~z+-(P#O{j0KmfN*fs$43&Uv) zIn>va0KnqMuR*&TWDp&LWR}vh4B>ZP8lfFGcXI{+aByHC*v~pfnx@VB$T1aws8tT) zqxqDW2GN}MvloMQ+0(Jmpw$O2t6ontM-n^F17T9^I++_}pc&)TQgIuq_ue-H)xkAtAi|ao<6%CY|9uCYff>#rm#(uq){7hUH||(hNpt-YtRf< z#ImljVw%JaGKj9EW6dEYE0+L@b(5@vij{KVFY6(i({lJoP!Y?@o!4V!%&{2FVQgv5 zja2#Xble~V)1X*$w6V>vrDXuX+VsRuC0;OT5xoG)vl6pnez0KB-=9B%{qlIuAIbY^ zS&0>RzT)0;+#mzfAkO8=N|n$Y*@LntTXQ1`pqnJ;hhlq}SmtEK4Kj$%Vl+uxxwLvv z%O=_!wT2wUr!~#0lO%4CfohO8CSsk!Y*R9}*#?TSrq)=%x~Ukm3S%bTCw8T^gkan$ z>m&^~$UrqnR=gZr(JY!YzEdYzCdrjjZM8#NA+43HM!P`bpYA3 zS=ua?7B|Qsvq6kSTBR*lJ(?9a$e@xz73W{%OrPY+<-&eB`j^>CopDSVgVI*SS#g65 z$_&!ROpG~}NfK>ty8Jp}4C9Ps$=e#-m8l}miW_85EsF)Qh*>Gtq*&8r%#!EPoJJX9 z;RYE*ug%NRvs}fHZ+x*rmTT~&`}PF@dIc@tewEL>TSmD-1~CTlWAJ`Z?0gJY9VFJ9 zX%S}aib-yeL7F$rWK-4OV376`eF*?;d|JwMeihsx$8j9TacbcoU3&sqlaHPx&a!Eu%RCt{2nz3sXQ4q$zh)o1Ls}zc$b`nW!B*Z2VB*KZJjjgp7TBM9uDrl41 zzd%ro7(}=x9NHK$*a#j-ECeB4;J`|Y%eT7U?KpRP?{0HueoeA(Z}(oZKW5&{TObI6 zAP9osU@}ql1X6MC=+$3E;~#gQ5A-)48sy@Gz}Oo^a~gM_6`o&sd<{T(lfoc}u{DV1 zES|cY8(*&70sw4mZ2s!XSrzZ;%yh zXpW*LS)Z#n>HvI`!XSskRZqZz=BzBNf5 zmSQaMVh^#_HyN$G5!rn9#;sVTgh39;Vh~OEtLDj>Wf{fKFK&0TjK&%@hcE`INj$a; ziE2JE$qdr0;u&StR$g{etk}h4es6RXhs3}JX?C!nQEG^0E6bn{-#-BWcG}+x&+7_X zV_8|kAcy3&n6)nQVvc4bj;lEuOSE4UJ?RmX%pg9=w?FO`p0AyJ3ILdyIt#!yM$O`S zrq`9ZRkf2|JBcI=a!6K-(VWT2IRHSjxeNf9ovi@?*1p~V0NkJZoVz~j@a>^l?AVdx zonLnUJ&&@rmPZ)mP&x)#=43aX=-j&9Zsx`}H`f3FJCAPW#pm}Yf^K@O%t z*3PD8o7+pBmFenw-V}xAyu5P;z@OM-#vEr}WY{q&407l)NX@Z!6-d^(Tk2HHtLw!v zrhfe=0AOaS+(gyn?7qf+Rw}|Ehpzv+8f3k>Wf{f(jiOb&6?=3gZS|`A-D59H8027P zF|CC%@(bdwC#i;6Mk#8Jb_VsnG-lX@K@MF8XgqlW za_IXhSZ|#Y%~BeRn9VG#UUgM{p)klHSwBd#4u7f8OwV&1RUVUo9Acui_(!IU` zPkMb5zUtUR!XSr%pGqo|l&Z}kVUWYf-VgH7ny+eeNEqZWw5R0lhA8{R7$pn}f*=Tj a|CZmfedef$C-j&A0000Px&?ny*JRCt{2nmbHXK@^66jg=wV7!?VHYt$${8%YetLW~W9wl;=}XdxO4C9xMw zjI52p#@N^yL~Mw!LPCO#g%6^{wIC`Q8;$*1?EbsVxpz2o_pbXO=WEE!-kG~(zCCm1 z0T_m1)Q?s5{sPtJP$rX)tACx#RrJ5EPWN?IJ}br`n)4_-5c~P5!7%{IO)`TNn%*Fq zbA9l%Q@<;-5dbjp^n+7>@5w6w;U<|u3QcQ}&m8jU^RL+YzT>+AgvTT^NTKNrlIAeh z%;kOp@S8(+Y}??p(@Zjh6q?4M(3nF*SpN8B(Rps?*3AIQv54jkWyb+TO)`TN8r~pZ zhAd-_G)03Z(KsSaGJ_P>r0u}BdJe@mdnCGT@w5gJ zxn^Qn8pBx$-FuvR!aOHweiMorq!2ud$=`HR7<;6F+WyUryDwtvX^xzgs%?@Pq!2O4 zm+w?7_DHn-8%c~gvYcvdC^3T+yfH|cL$1cox&l zk!H|{bGPp=+wOVxvQwtH)y`)s#SBvL8l>eXT06}ga%}J>0N~Drvrc!%`mN6F9 zJ0_Vy3aJg6Xx|F}=v#OTAbQ%s&m}JpY)Sj-nqUSgL=2MqDvS|wHd{Qp4*)QmTYme6 zX3?b1OriVEKi>fW!|Pg?Z6CUd|6iCv3W;M-eyp(5_~XHE0A)jDCe1QuCq9?I=APw` z4oo@E*L&8Im_Z7`C#yUyxHa73cF^$rrn*xd{mwE!B=9AXA3B#uEPbBdI1Ulfsd z3L~c>-`t|y@8PW3C?=Uf3aUXI(Z}sA+M^Dk_lacY%=h%dy-jOtu?9uGVMaEcSr4Eb zgL)SV`AmQD_NhF}=brXl&Yj&_yIrGZM&1C38ajKW%_(<|pf0h=3{r@U2F;NpNN5m^ z>KyqBAbR7Tu|=Ln%uXJ3`#V4H^cSJ4Xk0Oa=lg19k{P5>8ikTMVuT4tS|Ux7$k^gF ug>;EoPnbi@pavmgP@`kBm|+-(QQ{whvE)iWS0D`p z_H~I#VS#D;s+LS`zw>y`(f^a4+`91R|K0!p|Ch0pCjnJ(mjw9*GXVKeP+L}e6=0PGp5lLi9(86}A^jFQjLb+o_z`DUqDRKK0?3 zlZF!vm6X1IWaX0nwEQQJ^SMrq$w6MFJ8FI|h%N7n&`RlP)qc$Q`;>s<-zpBp42S41 zRtu6G%Bp+VB$pnv3;x-DU(cz{WtuBXg!kWwlnw_$Mb~Mp5w{PyJ6pH}T3Sb6LS3j3^P6Px&KS@MERCt{2noUSlQ51l`84BAB6b3p$P#af8A%>KWgp1Tj+n69FF5C!Nk(CLy zi8d)DBtj8L6j~U8j9OaD)F2EoiWU*Hsh$POAiSJ%P~qy|~ol7lfFfa<9Q-$pU2Iglr@DW@i>K^C%UkYP?^`3?XcPyaN^!l9c_0hsNq zgjkcDinibH}KZC7iJMltEf%rpS~9TP@-X>dTkX4ND$$U-(^kOS~$r6pc;&1mcP z@4UB0Oxb1B%k!ndfvm2YJmo-TDE5y7nQXU&T}ifN*5V=nTqGIzJ=3o}*~HO>1@CS9k0HON9b3^L4-SR#ymS^;3_?mpj#WAV)S z>-bIp@{d;f_B$Vr8RfBq&yBM8%qDEqBsIuF*3M$J^T&P}Jq_M&7$= zp|5)k5>ESGV$gRX?#-KTs{$Y@+_?SO>cNb;FMPbMsP)XDzJA>3%G z2B7%DHdw=?;ogsKMf{8xI5i?&Qu@tmkcEvH$NsrBND(#2!g^wm_dmjH?@rb~+1UTv-_|eHaeYyP6h%=KMNt$*Q4~c{ b6eWQ_-WKaOzTlQ!00000NkvXXu0mjfJIPx%!%0LzRCt{2nlWe;K@^7n4c0+B6^xCf5KWf^5=#+-5VaB;qYw)_F<>JSEYb*y zouVgR0wPw*fdn+2CSvTOq_|2AB=Hfa0VsFkfA-~Spkj)u5Q zYBawC0PGyNy=UDbDmm7;kU<_g`Sy)$RuntC(ahym%-OA2<3a{`C~ZeExUPx%#z{m$RCt{2o3U;aK@>$_NIDv-AdqN~k}4G`Xz~#hNHkP@0u_7#d;%4fn@ADj z3)0|*f>fz&i3SNoDjGV_QY=^Uyv*!3lEw`}2!0csR(l$sod*26bl0!=t;MZ!Q_LT%@ObaF`c!s7#VUgfR?iEHLYoh#FD? zWp>HI46`B7vLVI6}SGqcBU+lr#{s4!+B zUvWI&*OcdPN`~y3nc2_FUp3c2kwJuY625A-Dw*W**>rKW8#=x>=le|Sph@VHK}q&3 z7ty!njRCdhRAkLseIyw~SbH7BD*a&px7msze)hs{9OL})YG@kb=k#Is;lVlK~ zPr^55X7^v;OP(xM`sPt;2!KhxpW|8S?}Qk-k0gT#kqpYt0?};1xQl{G9qSjfj+J_e z==$o(i97$lS>-cH1`)ap%I>uQD)QmHu3v*$>fkVM&h^hrkIxOs&zAAMUuv)nB6Q7S zy*h);EX-8h~f&T?Y-d z*Yfyr-Vkq+H_U_2UoO&2VX*a_3?dW_idF#Qm`Ru&{-HjSnGE943}W9n)-~QF_Wo_@ zBl*3bcJq}K4XWL(dz1WL3k;oY(c=MTj7J6$hPXFxmN6+hzC>-dVSMSheeaXWAVRL( zJJx>V+0E7Mr`@}5RB*YELN(df8MWEQI+K0xu*x7pS72nn@se4dvsv$RN?_TRF$L&X zu2ZmyU)uM|HZWASM3F&+ZTer0=nI{p9xT520u-v$c+0000< KMNUMnLSTZg3UjCc literal 0 HcmV?d00001 diff --git a/mysite/static/items.yaml b/mysite/static/items.yaml index 3894fa3e..5fef43cd 100644 --- a/mysite/static/items.yaml +++ b/mysite/static/items.yaml @@ -2081,7 +2081,7 @@ EquipmentStatues28: Essence Statue EquipmentStatues29: Villager Statue EquipmentStatues30: Dragon Warrior Statue EquipmentStatues31: Spelunky Statue -EquipmentStatues32: Coral Statue +EquipmentStatues32: Reef Coral Statue PureWater: Distilled Water PureWater2: Dense Water Island0: Garbage From e76e72e4673eaa6a7ea9267c9ce25801707cc436 Mon Sep 17 00:00:00 2001 From: CallMeHein <37670876+CallMeHein@users.noreply.github.com> Date: Mon, 25 May 2026 17:38:35 +0200 Subject: [PATCH 5/7] Add Coral Kid section --- mysite/consts/idleon/w7/coral_kid.py | 34 ++++++++ mysite/models/account_calcs.py | 1 + mysite/models/general/account.py | 2 + mysite/models/w7/coral_kid.py | 77 ++++++++++++++++++ mysite/static/assets/_coral_kid.scss | 12 +++ mysite/static/assets/image-mapping.scss | 2 + mysite/static/imgs/1x/sprite-673-29.png | Bin 0 -> 3356 bytes mysite/static/imgs/data/DivGod10.png | Bin 0 -> 1406 bytes .../imgs/extracted_sprites/CoralKid0.png | Bin 0 -> 734 bytes mysite/taskSuggester.py | 2 + .../sprite_extractor/sprite_extractor_dict.py | 6 ++ mysite/w7/coral_kid.py | 43 ++++++++++ 12 files changed, 179 insertions(+) create mode 100644 mysite/consts/idleon/w7/coral_kid.py create mode 100644 mysite/models/w7/coral_kid.py create mode 100644 mysite/static/assets/_coral_kid.scss create mode 100644 mysite/static/imgs/1x/sprite-673-29.png create mode 100644 mysite/static/imgs/data/DivGod10.png create mode 100644 mysite/static/imgs/extracted_sprites/CoralKid0.png create mode 100644 mysite/w7/coral_kid.py diff --git a/mysite/consts/idleon/w7/coral_kid.py b/mysite/consts/idleon/w7/coral_kid.py new file mode 100644 index 00000000..e9f0cddc --- /dev/null +++ b/mysite/consts/idleon/w7/coral_kid.py @@ -0,0 +1,34 @@ +from typing import TypedDict, Callable +from consts.idleon.w7.spelunk import Spelunky + +coral_kid_description_templates = [desc.replace("_", " ").replace(" @ ", " ") for desc in Spelunky[25]] + +# "this._GenINFO[118] =" in source. Last updates in v2.505 May 25 +coral_kid_upgrades_divinity_requirements = [0, 600, 900, 1250, 1700, 2200] + + +# derived from `"CoralKidUpgBonus" == "` in source. Last updated in v2.505 May 25 +class CoralKidUpgradeBonusFormulaInput(TypedDict): + level: int + god_rank: int + total_divinity_level: int + coral_reef_upgrade_count: int + + +coral_kid_upgrades_bonus_base_formulas: list[Callable[[CoralKidUpgradeBonusFormulaInput], int | float]] = [ + lambda data: 10 * data["level"], + lambda data: 2 * data["level"], + lambda data: 20 * data["level"] / (25 + data["level"]), + lambda data: -1, + lambda data: 2 * data["level"], + lambda data: 100 * data["level"] / (40 + data["level"]) +] + +coral_kid_upgrades_bonus_final_formulas: list[Callable[[CoralKidUpgradeBonusFormulaInput], int | float]] = [ + coral_kid_upgrades_bonus_base_formulas[0], + coral_kid_upgrades_bonus_base_formulas[1], + lambda data: coral_kid_upgrades_bonus_base_formulas[2](data) * data["god_rank"], + lambda data: -1, + lambda data: coral_kid_upgrades_bonus_base_formulas[4](data) * data["coral_reef_upgrade_count"], + coral_kid_upgrades_bonus_base_formulas[5], +] diff --git a/mysite/models/account_calcs.py b/mysite/models/account_calcs.py index 88264336..02399737 100644 --- a/mysite/models/account_calcs.py +++ b/mysite/models/account_calcs.py @@ -2226,6 +2226,7 @@ def _calculate_w7(account): account.zenith_market.calculate_bonuses() account.research.calculate_bonuses() account.dancing_coral.calculate_bonuses() + account.coral_kid.calculate_bonuses() def _calculate_w7_coral_reef(account): diff --git a/mysite/models/general/account.py b/mysite/models/general/account.py index 677c4ecf..568dbffe 100644 --- a/mysite/models/general/account.py +++ b/mysite/models/general/account.py @@ -11,6 +11,7 @@ from models.w6.emperor import Emperor from models.w6.beanstalk import Beanstalk from models.w6.sneaking import Sneaking +from models.w7.coral_kid import CoralKid from models.w7.dancing_coral import DancingCoral from models.w7.research import Research from models.w7.spelunk import Spelunk @@ -105,6 +106,7 @@ def __init__(self, json_data, source_string: InputType): self.zenith_market = ZenithMarket(self.raw_data) self.research = Research(self.raw_data) self.dancing_coral = DancingCoral(self.raw_data) + self.coral_kid = CoralKid(self.raw_data) def add_alert_list( self, group_name: str, advice_list: list[Advice | None] | set[Advice | None] diff --git a/mysite/models/w7/coral_kid.py b/mysite/models/w7/coral_kid.py new file mode 100644 index 00000000..dc2e8132 --- /dev/null +++ b/mysite/models/w7/coral_kid.py @@ -0,0 +1,77 @@ +from consts.consts_autoreview import ValueToMulti, EmojiType +from consts.idleon.w7.coral_kid import coral_kid_description_templates, coral_kid_upgrades_divinity_requirements, \ + coral_kid_upgrades_bonus_base_formulas, coral_kid_upgrades_bonus_final_formulas +from models.advice.advice import Advice +from utils.number_formatting import round_and_trim +from utils.safer_data_handling import safe_loads, logger, safer_index + + +class CoralKidUpgrade: + def __init__(self, index: int, level: int, description_template: str): + self.index = index + self.level = level + self.description_template = description_template + self.divinity_required = coral_kid_upgrades_divinity_requirements[index] + self.image = f"coral-kid-upgrade-{index}" + self.base_value = 0 + self.value = 0 + self.unlocked = False + + def calculate_bonus(self): + from models.general.session_data import session_data + self.base_value = round_and_trim(coral_kid_upgrades_bonus_base_formulas[self.index]({ + "level": self.level, + "total_divinity_level": sum(session_data.account.all_skills["Divinity"]), + "coral_reef_upgrade_count": sum( + [coral["Level"] for coral in list(session_data.account.coral_reef["Reef Corals"].values())] + ), + "god_rank": session_data.account.divinity["GodRank"], + }), 0) + + self.value = round_and_trim(coral_kid_upgrades_bonus_final_formulas[self.index]({ + "level": self.level, + "total_divinity_level": sum(session_data.account.all_skills["Divinity"]), + "coral_reef_upgrade_count": sum( + [coral["Level"] for coral in list(session_data.account.coral_reef["Reef Corals"].values())] + ), + "god_rank": session_data.account.divinity["GodRank"], + }), 0) + + def get_advice(self): + from models.general.session_data import session_data + total_div_level: int = sum(session_data.account.all_skills["Divinity"]) + self.unlocked = self.divinity_required <= total_div_level + description = self.description_template + if "{" in description: + description = description.replace("{", str(self.base_value)) + elif "}" in description: + description = description.replace("}", str(ValueToMulti(self.base_value))) + + if "$x" in description: + description = description.replace("$x", f" {ValueToMulti(self.value)}x") + elif "+$%" in description: + description = description.replace("+$%", f" +{self.value}%") + + if self.index == 3: + description = "Character's Divinity Skill Lv boosts Minor Link Bonuses." + return Advice( + label=description, + picture_class=self.image, + progression=self.level if self.unlocked else 0, + goal=EmojiType.INFINITY.value if self.unlocked else 1, + ) + + +class CoralKid(dict[int, CoralKidUpgrade]): + def __init__(self, raw_data: dict): + raw_optlacc = safe_loads(raw_data.get("OptLacc", [])) + if not raw_optlacc: + logger.warning("Coral Kid data not present.") + for index, description_template in enumerate(coral_kid_description_templates): + level = safer_index(raw_optlacc, 427 + index, 0) + upgrade = CoralKidUpgrade(index, level, description_template) + self[index] = upgrade + + def calculate_bonuses(self): + for bonus in self.values(): + bonus.calculate_bonus() diff --git a/mysite/static/assets/_coral_kid.scss b/mysite/static/assets/_coral_kid.scss new file mode 100644 index 00000000..0acf517b --- /dev/null +++ b/mysite/static/assets/_coral_kid.scss @@ -0,0 +1,12 @@ +@import "ballot"; +@import "coral"; + +$coral-kid: ( + coral-kid: img('extracted_sprites/CoralKid0.png'), + coral-kid-upgrade-0: img('data/DivGod10.png'), + coral-kid-upgrade-1: img('Divinity.png'), + coral-kid-upgrade-2: map-get($ballot, ballot-15), + coral-kid-upgrade-3: img('Divinity.png'), + coral-kid-upgrade-4: img('Divinity.png'), + coral-kid-upgrade-5: map-get($all-coral, coral) +); diff --git a/mysite/static/assets/image-mapping.scss b/mysite/static/assets/image-mapping.scss index 26e07f63..4a6f5265 100644 --- a/mysite/static/assets/image-mapping.scss +++ b/mysite/static/assets/image-mapping.scss @@ -133,6 +133,7 @@ $id-map: map-merge($id-map, $all-summoning); @import "research"; @import "spelunking"; @import "zenith_market"; +@import "coral_kid"; $id-map: map-merge($id-map, $all-advice-fish); $id-map: map-merge($id-map, $all-clam); @@ -144,6 +145,7 @@ $id-map: map-merge($id-map, $all-spelunking); $id-map: map-merge($id-map, $dancing-coral); $id-map: map-merge($id-map, $meritocracy); $id-map: map-merge($id-map, $zenith-market); +$id-map: map-merge($id-map, $coral-kid); @each $class, $link in $id-map { diff --git a/mysite/static/imgs/1x/sprite-673-29.png b/mysite/static/imgs/1x/sprite-673-29.png new file mode 100644 index 0000000000000000000000000000000000000000..67bfb775bbd97f2607a86d6a635a61a7279a7904 GIT binary patch literal 3356 zcmV+%4de2OP)g5N_+RksW^r|m9@Z!ff|hl2tEPCP-a(6tq5X>ZyE!> z-7QJmHbDRU(_eq{*rP|cP-x!Y|NZxGZ%yot=aEzG4gBk0dw6LYJXBto9yt^??;cLx z#LVS^>5)UFM)_=9Y?jq;K5k$y2kVhD6^#-bc=eml>%n^DP^yW!aX4qT6w}#*<-OUx z^98wQG&t2T*vzVk*~Lkw&V!Y5E9|S~oiE5e;|>V_(w7ZWX_VQ;9Wk}mRyk_kSs{~! zx`#PRv-n2JJ!1_}jrHd8ymz%fKfYV~s(JC0d zaY{f6gtd*zayviH&q}e?#xSSgtIYk5YR}Hb4mMi(H{l^&0^=~D zsXH`meyb3U(S;qYi|ZZD<@w)H&su8DlxK}K@sI^6&e~X!S7W3X$8uSN;x!kS6;z8! zh1vRvgASL?DR_X(VkBR|CDv{EDq{j;dN#d{dF>`EcsQEzTSCyR8LUYFwkV1Un^BZC z2ahq|J|;E=Ir%x?kyF=$pm#Zb=S;ztVCDi{P` z_>=jzNrv+}wP0UT9yR|qi8IK2!N@p;kLe!#HRAKuZ&Ua>#yS;+M8j(hqH?xL#`8J_ zLyIqr0~?t>OtKk7AfL+HfYBNS=YLoGTCGnD!D)=>^;UX0l=HN3vs1)|Pz}Q4+r$Q` z8C+vwvuE?6aI-Ux=qGxJImnsx#XU^Q%UUpJ$_GC~%=Gh=BJdX&n9dEtV<{&pUJp^W z9-16km`9CmxzR)UP_{OYv0pf+XyEX5&N@`dAJMeRU(Q8Vi$DJMmtyV;rHwWNv6xm^ zo;@SRFq!Gmq!etpna+G{I6ixnuqlu?H4O38#FL|=^C53!g&R&YT!*Bwhq=1vpC;UfH4EvPzJxaaZ$-^X5;ItjRr4@2JYp& zg0*(o!q@wCxMvL#%bPdqJgu9ZLr!4 zj2^vSnb{GT<4Utza?F|t>D}h zVy0Gb?xP>9XTu-eR-t)YzlY%`=qK0qmVVO5)!xAIJHGB-i_-tY0X-!%1i#hquI6C# z?(xGmn(O;XwS7x$%w0D=)d2_cCw{Wrd5@;(r)+$&$*~Unnse?V_j|MwWW>g=t9-f;8kP2xjgSG)p&S}?_+)!KW;ofEE_x6OxXYgHB$wzs)2aWq@%f4NHK66@`L|Z z^P_re!60)}WGVAr~`9VdCN919en~WN*Zk>?qq*3-mRO30{sX`Hf4Bb6?mztRowH z=Tp2ejSZ>2!CFB%SE#6iHs9tHtiWt>HG7b8<2CZ7y7&tjzzr;(S%@KO z!4FD#1hR=A!JaL(`Dt8iZ1|Jw-WG71m?hh2!LM@mxUhMH6hpx%_*I^Y?poA_s^AB5 z-WGoOMS#tJlgm^wcaMSDy~rKnN^TU_V09ew!~AW*0c3`E*;7>Jcgq&WuuZN#7(q7& z4U7h+`(zA{Z5|rfe1^?r&RR{|LjK6~#n5QrZ2VV#=(uiNqg%M~IEEm+0N&rw$gk_E z%J@VBFuxkxO6KX@tmtXJp}>gzJeG16H1Hj$GB37*P_LZyqpKmJSWw_+YyjmhyR5DQy2djbuuP30h{;9y>EWxcED^Z zHnd;{zmXaJU&LQBH@NLS=4DTNNBBnF3fyHQq0C^yYXN9rT$CX=hC-cJY69luYe&qxR5S23kFRQ6lrbp2Rot&8hPRoS zyMz3C{X-AI?0P2DS(!=6%o}jukvWK&krThR=H>huN^i1oVSsEThBs4#n46hBazD(I zWRUnVV8A@ixvSJ-M((>Yd*f9-;Evght^E=={3UP8VWXItjrPiW#O#GP=r+u%8Tgc0 zEQgKiW%kNjWA?^-3ua|5!s3{R6NkJ<%n$E->ScDp%dl)J-tz#=ylg5nKfLF}Z{HfT z7v849Y;uUzz|4EZ{P3Prt$}OIt9hHiDpmt4-WK!2dro)b-4!5ugL7AinOecQE5uB# z;M^5rrdDw7qeqV(JzAmXjr{1g3eDT~BlF&M`vPttZyxW>Yu}n1zfpm7JKdYqWxcZryv9{9Rc6mg?di0q!3y?U$;6^?meJXEa+@9@m+ z*>GlE$ zFZW$ISNN+q)EM8#{3|%CVps!WXpSqOkIZ3CzUG=*&zdD>^5kz&FN^Xp#knbf*Gry7$#n(yRq zZH=8Vd`l%UrF&|OnqEEk+hX(7B0PuZtDKoqJc>chI|}uj?}!=H^LY->S2;6;9K0qo z+I=3k7XUZ=j2FYM0-yul=3wyr+Px8~@f^+J`6}=kBcwQZo!XolSL@!pVg`Qhe&4>a z9q#Yr{MU;R+`!_QL&V^`Py!eCF}GUKtdobox~Y>{#nhEu3+3)0Um6bX1x|TPXt*W%BMKVZ$hlHlVFh03}lDEMe)Z`X1h<~iV7sfyN1g@$_YRlryt{@a*uDu^FFWHeSmq=3&u28&Pd+P%#Rgi~jQPBJ$sYsQW^(-foGoBn>he$N7rA!p_DAjn4`BYO}aOeu&7~cG~!>0VJjp6uAwx*Q949A6R z(cJJS#3fR^l36sx{`G}T5u|tvRv1sL3;Z=dn5o7Z;tCI&!jrdy!ds~ZZ6-rprh+%H z#kX&b*?3nq#a;bXtoF6}&H0xr0|rPujR?*2_<6I{!&_tC7Bocy@v_Nbj%Qwv{+e$V%xhzuyF_Sk>zBEOdmfIt~T z>yf#|>y`D0*Y2(6tpZzcW2^>#c;~9c%d8%FB`}+eu^RZ{ovXX??g|jS!MQ8MOs(MD m6=J4VaPA5*Q!6<4UHuRBOkH+I=q{iD0000c literal 0 HcmV?d00001 diff --git a/mysite/static/imgs/data/DivGod10.png b/mysite/static/imgs/data/DivGod10.png new file mode 100644 index 0000000000000000000000000000000000000000..d1fee9373deed0684ffa01a971d61f5c325134e2 GIT binary patch literal 1406 zcmV-^1%djBP)Px#6;Mo6MF0Q*LLLWWE(@q#5%8-i|K(%<`@nTRwgCVD00(qZPE!E?|NsC0|D}JX z`v3q11W80eRA_Ytkm~uV9P!Nu09;M)WycwBnekDZj))ksU@|W#N7U zTC2FlLZAbGP2{v?%Qs27%E+R;sT-Sb{f+WorvZ@2fi`)pTkm9kdzUs*h`3OaNJkv_ z_W|}At)MDR{tq!q*kP~J01%t9-1Q^U)<=L)vF7facb7I%4atLSH>3RkKU#_bkR%*m zpq*G|xoF7s8(5P85B~M*9a>6G?NHDnWicDaOm zrqJ@%>rzyt5p}A6aezrl3{Hz?+SEGJn%X%0j5{o|Fa?1xR#`m6bt}EpsBYrKT7?6R zSnYFWbuCJk#Vso}WrG2!zhXQ-l5B9Kyc^T|@FU<6!m4(kq+v_8O~Q*n~VQ$N9`covGy z)M-K*4>Eef_8?$24K_#63N$CGlQ=>wT+S>@iV5f$CcXxvQFLG!R0jLZk0H-sXrb$x z@h1>kEgL(GEGQH9;O&K#zXujLZVLs%|cxHhN4B!w-sK!1J>GFL}3vttMpaWhH5 z%!N=;p)J`aT5H$0jT$2PA=JAhs-3kA5M+bmoH(9cY(iX%AJQR9n*qmum{c;$^6=KR z2ZrFf-1BwY3;aLK~|jHU`^Q0nly~GN2MzI@)oT0TM7Th zNsGZw8_G9w9DWb5>MvDIN`&I-P+m~CVLdjrsG5q>jxk85$Fy=H@N>`Y8)5Kt+U&@q{JcNPIN>nsmA3{!2ilsYvDt_0 z#E5!{6=~rdxw?~(Wq|i{FgofL8&=wWxEy{_5suwKUVRq=F>MNr5^U$a@!ln#yeZOp zxPb{rB?-%SSnJhG=){ueBPf_*694$_o4JUS#2aN0QhhYfe)AGg-^&?HuD$GLAeW9` zzutu8Jat>IEPOrz+*QxdVUgB?O8@emt)KkVrso%||Cso}^*<&50WOAGk#OA*8UO$Q M07*qoM6N<$f=>XK?*IS* literal 0 HcmV?d00001 diff --git a/mysite/static/imgs/extracted_sprites/CoralKid0.png b/mysite/static/imgs/extracted_sprites/CoralKid0.png new file mode 100644 index 0000000000000000000000000000000000000000..261cf2ff097a27a3be36afeede6790ce20c05be3 GIT binary patch literal 734 zcmV<40wMj0P)-)Py+sSZ$#J}e;06viS0zb2ImlRY;WSs?|Xq`A#Vx%&@ zS=kl_Skj%WT#312Vs@dFDgq-X#p2}s|q}SmYe124@Zskn&UoK$!PVKgM_07 z(7ynXdAd?T6gr6|1Z=cU92qQyE$GfB~?`k_;|NRsSLb{B~1-7RPBk#M770@LjKVT$4^G7YmJtvQ#a9{z13b zEL@n+FaZ2`;>AhlIa#}``L2iQ>U2X~v+Wq>8KW6r_>v*MT zYBdR!j2cI@P8`viyS=8Y5G>xAa_yC!mr&$=dRC~t%f$;=Y-WSJjDUUDBjMxOwv9n+ zgK*R+czL#M1NdtMnU|Fe3s|8-l~`;L{ AdviceGroup: + advices: list[Advice] = [ + bonus.get_advice() for bonus in session_data.account.coral_kid.values() + ] + + for advice in advices: + advice.mark_advice_completed() + + return AdviceGroup( + pre_string='Bonuses', + advices=advices, + tier='', + informational=True + ) + + +def get_coral_kid_section(): + if session_data.account.highest_world_reached < 7: + coral_kid_AdviceSection = AdviceSection( + name='Coral Kid', + tier='Not Yet Evaluated', + header='Come back after finding the Coral Kid in Balloon Bay!', + picture='extracted_sprites/CoralKid0.png', + unreached=True, + ) + return coral_kid_AdviceSection + + groups = [get_bonuses_info_group()] + return AdviceSection( + name='Coral Kid', + tier='', + header='Coral Kid', + picture='extracted_sprites/CoralKid0.png', + groups=groups, + informational=True, + unrated=True, + ) From 8d5fa14ed4e619abf3c5c03310630648df2046e5 Mon Sep 17 00:00:00 2001 From: nevar Date: Tue, 26 May 2026 16:38:24 +0700 Subject: [PATCH 6/7] Add new item v2.505 --- mysite/consts/consts_item_data.py | 16 +++--- mysite/consts/generated/raw_item_data.py | 73 +++++++++++++++++++++++- mysite/static/items.yaml | 3 + 3 files changed, 82 insertions(+), 10 deletions(-) diff --git a/mysite/consts/consts_item_data.py b/mysite/consts/consts_item_data.py index 61b11310..1302bbf1 100644 --- a/mysite/consts/consts_item_data.py +++ b/mysite/consts/consts_item_data.py @@ -13,35 +13,35 @@ from utils.logging import get_consts_logger logger = get_consts_logger(__name__) -# `scripts.ItemDefinitions` in source. Last updated in v2.503 +# `scripts.ItemDefinitions` in source. Last updated in v2.505 # paste body of the `make` function (excluding outer curly braces) # remove all spaces and newlines script_item_definitions = """M.itemDefs=newl();vara=newl(),b=newl();b.h.displayName="ERROR";b.h.sellPrice=0;b.h.typeGen="NothingERROR";b.h.ID=0;b.h.Type="FISTICUFF";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.lvReqToEquip=0;b.h.Class="ALL";b.h.Speed=3;b.h.Reach=55;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("Blank",a);a=newl();b=newl();b.h.displayName="NULL";b.h.sellPrice=0;b.h.typeGen="NothingERROR";b.h.ID=0;b.h.Type="FISTICUFF";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.lvReqToEquip=0;b.h.Class="ALL";b.h.Speed=3;b.h.Reach=55;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("null",a);a=newl();b=newl();b.h.displayName="ERROR";b.h.sellPrice=0;b.h.typeGen="NothingERROR";b.h.ID=0;b.h.Type="FISTICUFF";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.lvReqToEquip=0;b.h.Class="ALL";b.h.Speed=3;b.h.Reach=55;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("LockedInvSpace",a);a=newl();b=newl();b.h.displayName="Coins";b.h.sellPrice=0;b.h.typeGen="NothingERROR";b.h.ID=0;b.h.Type="FISTICUFF";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.lvReqToEquip=0;b.h.Class="ALL";b.h.Speed=3;b.h.Reach=55;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("COIN",a);a=newl();b=newl();b.h.displayName="Exp";b.h.sellPrice=0;b.h.typeGen="NothingERROR";b.h.ID=0;b.h.Type="FISTICUFF";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.lvReqToEquip=0;b.h.Class="ALL";b.h.Speed=3;b.h.Reach=55;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EXP",a);a=newl();b=newl();b.h.displayName="Copper_Ore";b.h.sellPrice=3;b.h.typeGen="bOre";b.h.ID=0;b.h.Type="ORE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Smelt_down_[_Ores_into_1_Bar";b.h.desc_line2="at_the_Forge.";b.h.desc_line3="Smelting_will_take_]_per";b.h.desc_line4="Bar_using_Forge_Slot_1.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Ore";b.h.Amount=2;b.h.Trigger=0;b.h.Cooldown=15;a.h.consumable=b;M.addNewConsumable("Copper",a);a=newl();b=newl();b.h.displayName="Iron_Ore";b.h.sellPrice=7;b.h.typeGen="bOre";b.h.ID=1;b.h.Type="ORE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Smelt_down_[_Ores_into_1_Bar";b.h.desc_line2="at_the_Forge.";b.h.desc_line3="Smelting_will_take_]_per";b.h.desc_line4="Bar_using_Forge_Slot_1.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Ore";b.h.Amount=4;b.h.Trigger=0;b.h.Cooldown=30;a.h.consumable=b;M.addNewConsumable("Iron",a);a=newl();b=newl();b.h.displayName="Gold_Ore";b.h.sellPrice=13;b.h.typeGen="bOre";b.h.ID=2;b.h.Type="ORE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Smelt_down_[_Ores_into_1_Bar";b.h.desc_line2="at_the_Forge.";b.h.desc_line3="Smelting_will_take_]_per";b.h.desc_line4="Bar_using_Forge_Slot_1.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Ore";b.h.Amount=7;b.h.Trigger=0;b.h.Cooldown=60;a.h.consumable=b;M.addNewConsumable("Gold",a);a=newl();b=newl();b.h.displayName="Platinum_Ore";b.h.sellPrice=20;b.h.typeGen="bOre";b.h.ID=3;b.h.Type="ORE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Smelt_down_[_Ores_into_1_Bar";b.h.desc_line2="at_the_Forge.";b.h.desc_line3="Smelting_will_take_]_per";b.h.desc_line4="Bar_using_Forge_Slot_1.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Ore";b.h.Amount=16;b.h.Trigger=0;b.h.Cooldown=200;a.h.consumable=b;M.addNewConsumable("Plat",a);a=newl();b=newl();b.h.displayName="Dementia_Ore";b.h.sellPrice=35;b.h.typeGen="bOre";b.h.ID=4;b.h.Type="ORE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Smelt_down_[_Ores_into_1_Bar";b.h.desc_line2="at_the_Forge.";b.h.desc_line3="Smelting_will_take_]_per";b.h.desc_line4="Bar_using_Forge_Slot_1.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Ore";b.h.Amount=40;b.h.Trigger=0;b.h.Cooldown=400;a.h.consumable=b;M.addNewConsumable("Dementia",a);a=newl();b=newl();b.h.displayName="Void_Ore";b.h.sellPrice=48;b.h.typeGen="bOre";b.h.ID=5;b.h.Type="ORE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Smelt_down_[_Ores_into_1_Bar";b.h.desc_line2="at_the_Forge.";b.h.desc_line3="Smelting_will_take_]_per";b.h.desc_line4="Bar_using_Forge_Slot_1.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Ore";b.h.Amount=100;b.h.Trigger=0;b.h.Cooldown=750;a.h.consumable=b;M.addNewConsumable("Void",a);a=newl();b=newl();b.h.displayName="Lustre_Ore";b.h.sellPrice=60;b.h.typeGen="bOre";b.h.ID=6;b.h.Type="ORE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Smelt_down_[_Ores_into_1_Bar";b.h.desc_line2="at_the_Forge.";b.h.desc_line3="Smelting_will_take_]_per";b.h.desc_line4="Bar_using_Forge_Slot_1.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Ore";b.h.Amount=250;b.h.Trigger=0;b.h.Cooldown=1300;a.h.consumable=b;M.addNewConsumable("Lustre",a);a=newl();b=newl();b.h.displayName="Starfire_Ore";b.h.sellPrice=100;b.h.typeGen="bOre";b.h.ID=7;b.h.Type="ORE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Smelt_down_[_Ores_into_1_Bar";b.h.desc_line2="at_the_Forge.";b.h.desc_line3="Smelting_will_take_]_per";b.h.desc_line4="Bar_using_Forge_Slot_1.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Ore";b.h.Amount=500;b.h.Trigger=0;b.h.Cooldown=2e3;a.h.consumable=b;M.addNewConsumable("Starfire",a);a=newl();b=newl();b.h.displayName="Dreadlo_Ore";b.h.sellPrice=130;b.h.typeGen="bOre";b.h.ID=8;b.h.Type="ORE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Smelt_down_[_Ores_into_1_Bar";b.h.desc_line2="at_the_Forge.";b.h.desc_line3="Smelting_will_take_]_per";b.h.desc_line4="Bar_using_Forge_Slot_1.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Ore";b.h.Amount=1e3;b.h.Trigger=0;b.h.Cooldown=3e3;a.h.consumable=b;M.addNewConsumable("Dreadlo",a);a=newl();b=newl();b.h.displayName="Marble_Ore";b.h.sellPrice=500;b.h.typeGen="bOre";b.h.ID=10;b.h.Type="ORE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Smelt_down_[_Ores_into_1_Bar";b.h.desc_line2="at_the_Forge.";b.h.desc_line3="Smelting_will_take_]_per";b.h.desc_line4="Bar_using_Forge_Slot_1.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Ore";b.h.Amount=3e3;b.h.Trigger=0;b.h.Cooldown=5e3;a.h.consumable=b;M.addNewConsumable("Marble",a);a=newl();b=newl();b.h.displayName="Godshard_Ore";b.h.sellPrice=250;b.h.typeGen="bOre";b.h.ID=9;b.h.Type="ORE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Smelt_down_[_Ores_into_1_Bar";b.h.desc_line2="at_the_Forge.";b.h.desc_line3="Smelting_will_take_]_per";b.h.desc_line4="Bar_using_Forge_Slot_1.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Ore";b.h.Amount=6e3;b.h.Trigger=0;b.h.Cooldown=1e4;a.h.consumable=b;M.addNewConsumable("Godshard",a);a=newl();b=newl();b.h.displayName="Prehistrium_Ore";b.h.sellPrice=250;b.h.typeGen="bOre";b.h.ID=9;b.h.Type="ORE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Smelt_down_[_Ores_into_1_Bar";b.h.desc_line2="at_the_Forge.";b.h.desc_line3="Smelting_will_take_]_per";b.h.desc_line4="Bar_using_Forge_Slot_1.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Ore";b.h.Amount=2e4;b.h.Trigger=0;b.h.Cooldown=15e3;a.h.consumable=b;M.addNewConsumable("Prehistrium",a);a=newl();b=newl();b.h.displayName="Motherlode_Ore";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CURRENCY";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_seeing_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;M.addNewQuest("Motherlode",a);a=newl();b=newl();b.h.displayName="Fractal_Fly";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CURRENCY";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_seeing_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;M.addNewQuest("Bug14",a);a=newl();b=newl();b.h.displayName="Everlog";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CURRENCY";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_seeing_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;M.addNewQuest("MotherlodeTREE",a);a=newl();b=newl();b.h.displayName="Trench_fish";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CURRENCY";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_seeing_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;M.addNewQuest("Fish14",a);a=newl();b=newl();b.h.displayName="Copper_Bar";b.h.sellPrice=7;b.h.typeGen="bBar";b.h.ID=0;b.h.Type="BAR";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("CopperBar",a);a=newl();b=newl();b.h.displayName="Iron_Bar";b.h.sellPrice=32;b.h.typeGen="bBar";b.h.ID=1;b.h.Type="BAR";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("IronBar",a);a=newl();b=newl();b.h.displayName="Gold_Bar";b.h.sellPrice=115;b.h.typeGen="bBar";b.h.ID=2;b.h.Type="BAR";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("GoldBar",a);a=newl();b=newl();b.h.displayName="Platinum_Bar";b.h.sellPrice=460;b.h.typeGen="bBar";b.h.ID=3;b.h.Type="BAR";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("PlatBar",a);a=newl();b=newl();b.h.displayName="Dementia_Bar";b.h.sellPrice=1500;b.h.typeGen="bBar";b.h.ID=4;b.h.Type="BAR";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("DementiaBar",a);a=newl();b=newl();b.h.displayName="Void_Bar";b.h.sellPrice=6200;b.h.typeGen="bBar";b.h.ID=5;b.h.Type="BAR";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("VoidBar",a);a=newl();b=newl();b.h.displayName="Lustre_Bar";b.h.sellPrice=12500;b.h.typeGen="bBar";b.h.ID=6;b.h.Type="BAR";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("LustreBar",a);a=newl();b=newl();b.h.displayName="Starfire_Bar";b.h.sellPrice=1;b.h.typeGen="bBar";b.h.ID=7;b.h.Type="BAR";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("StarfireBar",a);a=newl();b=newl();b.h.displayName="Dreadlo_Bar";b.h.sellPrice=1;b.h.typeGen="bBar";b.h.ID=8;b.h.Type="BAR";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("DreadloBar",a);a=newl();b=newl();b.h.displayName="Godshard_Bar";b.h.sellPrice=1;b.h.typeGen="bBar";b.h.ID=9;b.h.Type="BAR";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("GodshardBar",a);a=newl();b=newl();b.h.displayName="Prehistrium_Bar";b.h.sellPrice=1;b.h.typeGen="bBar";b.h.ID=11;b.h.Type="BAR";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("PrehistriumBar",a);a=newl();b=newl();b.h.displayName="Marble_Bar";b.h.sellPrice=1;b.h.typeGen="bBar";b.h.ID=10;b.h.Type="BAR";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("MarbleBar",a);a=newl();b=newl();b.h.displayName="Crude_Oil";b.h.sellPrice=8;b.h.typeGen="cOil";b.h.ID=0;b.h.Type="BARREL";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Forging_Speed_by_[%";b.h.desc_line2="for_the_Forge_Slot_it's_in.";b.h.desc_line3="]%_chance_to_be_consumed_when";b.h.desc_line4="a_bar_is_forged.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="SpeedForge";b.h.Amount=15;b.h.Trigger=1;b.h.Cooldown=75;a.h.consumable=b;M.addNewConsumable("OilBarrel1",a);a=newl();b=newl();b.h.displayName="Toxic_Sludge";b.h.sellPrice=20;b.h.typeGen="cOil";b.h.ID=0;b.h.Type="BARREL";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Extra_Bar_chance";b.h.desc_line2="by_[%_for_the_Slot_it's_in.";b.h.desc_line3="]%_chance_to_be_consumed_when";b.h.desc_line4="a_bar_is_forged.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="DoubleBarsForge";b.h.Amount=20;b.h.Trigger=1;b.h.Cooldown=60;a.h.consumable=b;M.addNewConsumable("OilBarrel2",a);a=newl();b=newl();b.h.displayName="Radioactive_Waste";b.h.sellPrice=50;b.h.typeGen="cOil";b.h.ID=0;b.h.Type="BARREL";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Forging_Speed_by_[%";b.h.desc_line2="for_the_Forge_Slot_it's_in.";b.h.desc_line3="]%_chance_to_be_consumed_when";b.h.desc_line4="a_bar_is_forged.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="SpeedForge";b.h.Amount=30;b.h.Trigger=1;b.h.Cooldown=30;a.h.consumable=b;M.addNewConsumable("OilBarrel3",a);a=newl();b=newl();b.h.displayName="Glumlee's_Special|Tutorial_Oil";b.h.sellPrice=350;b.h.typeGen="cOil";b.h.ID=0;b.h.Type="BARREL";b.h.lvReqToCraft="999";a.h.common=b;b=newl();b.h.desc_line1="Increases_Forging_Speed_by_[%";b.h.desc_line2="for_the_Forge_Slot_it's_in.";b.h.desc_line3="]%_chance_to_be_consumed_when";b.h.desc_line4="a_bar_is_forged.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="SpeedForge";b.h.Amount=999;b.h.Trigger=1;b.h.Cooldown=200;a.h.consumable=b;M.addNewConsumable("OilBarrel4",a);a=newl();b=newl();b.h.displayName="Eco_Friendly_Oil";b.h.sellPrice=350;b.h.typeGen="cOil";b.h.ID=0;b.h.Type="BARREL";b.h.lvReqToCraft="999";a.h.common=b;b=newl();b.h.desc_line1="Increases_Forging_Speed_by_[%";b.h.desc_line2="for_the_Forge_Slot_it's_in.";b.h.desc_line3="]%_chance_to_be_consumed_when";b.h.desc_line4="a_bar_is_forged.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="SpeedForge";b.h.Amount=10;b.h.Trigger=1;b.h.Cooldown=30;a.h.consumable=b;M.addNewConsumable("OilBarrel5",a);a=newl();b=newl();b.h.displayName="Magma_Barrel";b.h.sellPrice=3e6;b.h.typeGen="cOil";b.h.ID=0;b.h.Type="BARREL";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Extra_Bar_chance";b.h.desc_line2="by_[%_for_the_Slot_it's_in.";b.h.desc_line3="]%_chance_to_be_consumed_when";b.h.desc_line4="a_bar_is_forged.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="DoubleBarsForge";b.h.Amount=40;b.h.Trigger=1;b.h.Cooldown=50;a.h.consumable=b;M.addNewConsumable("OilBarrel6",a);a=newl();b=newl();b.h.displayName="Plasma_Barrel";b.h.sellPrice=2e9;b.h.typeGen="cOil";b.h.ID=0;b.h.Type="BARREL";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Extra_Bar_chance";b.h.desc_line2="by_[%_for_the_Slot_it's_in.";b.h.desc_line3="]%_chance_to_be_consumed_when";b.h.desc_line4="a_bar_is_forged.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="DoubleBarsForge";b.h.Amount=60;b.h.Trigger=1;b.h.Cooldown=30;a.h.consumable=b;M.addNewConsumable("OilBarrel7",a);a=newl();b=newl();b.h.displayName="Oak_Logs";b.h.sellPrice=2;b.h.typeGen="bLog";b.h.ID=0;b.h.Type="LOG";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("OakTree",a);a=newl();b=newl();b.h.displayName="Bleach_Logs";b.h.sellPrice=3;b.h.typeGen="bLog";b.h.ID=0;b.h.Type="LOG";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("BirchTree",a);a=newl();b=newl();b.h.displayName="Jungle_Logs";b.h.sellPrice=6;b.h.typeGen="bLog";b.h.ID=0;b.h.Type="LOG";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("JungleTree",a);a=newl();b=newl();b.h.displayName="Forest_Fibres";b.h.sellPrice=10;b.h.typeGen="bLog";b.h.ID=0;b.h.Type="LOG";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("ForestTree",a);a=newl();b=newl();b.h.displayName="Potty_Rolls";b.h.sellPrice=15;b.h.typeGen="bLog";b.h.ID=0;b.h.Type="LOG";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("ToiletTree",a);a=newl();b=newl();b.h.displayName="Tropilogs";b.h.sellPrice=20;b.h.typeGen="bLog";b.h.ID=0;b.h.Type="LOG";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("PalmTree",a);a=newl();b=newl();b.h.displayName="Veiny_Logs";b.h.sellPrice=25;b.h.typeGen="bLog";b.h.ID=0;b.h.Type="LOG";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("StumpTree",a);a=newl();b=newl();b.h.displayName="Tundra_Logs";b.h.sellPrice=30;b.h.typeGen="bLog";b.h.ID=0;b.h.Type="LOG";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("SaharanFoal",a);a=newl();b=newl();b.h.displayName="Wispy_Lumber";b.h.sellPrice=40;b.h.typeGen="bLog";b.h.ID=0;b.h.Type="LOG";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("Tree7",a);a=newl();b=newl();b.h.displayName="Alien_Hive_Chunk";b.h.sellPrice=55;b.h.typeGen="bLog";b.h.ID=0;b.h.Type="LOG";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("AlienTree",a);a=newl();b=newl();b.h.displayName="Cubed_Logs";b.h.sellPrice=80;b.h.typeGen="bLog";b.h.ID=0;b.h.Type="LOG";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("Tree8",a);a=newl();b=newl();b.h.displayName="Maple_Logs";b.h.sellPrice=150;b.h.typeGen="bLog";b.h.ID=0;b.h.Type="LOG";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("Tree9",a);a=newl();b=newl();b.h.displayName="Dandielogs";b.h.sellPrice=250;b.h.typeGen="bLog";b.h.ID=0;b.h.Type="LOG";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("Tree10",a);a=newl();b=newl();b.h.displayName="Willow_Logs";b.h.sellPrice=500;b.h.typeGen="bLog";b.h.ID=0;b.h.Type="LOG";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("Tree11",a);a=newl();b=newl();b.h.displayName="Bamboo_Logs";b.h.sellPrice=500;b.h.typeGen="bLog";b.h.ID=0;b.h.Type="LOG";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("Tree12",a);a=newl();b=newl();b.h.displayName="Effervescent_Logs";b.h.sellPrice=500;b.h.typeGen="bLog";b.h.ID=0;b.h.Type="LOG";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("Tree13",a);a=newl();b=newl();b.h.displayName="Seaweed_Logs";b.h.sellPrice=500;b.h.typeGen="bLog";b.h.ID=0;b.h.Type="LOG";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("Tree14",a);a=newl();b=newl();b.h.displayName="Grass_Leaf";b.h.sellPrice=4;b.h.typeGen="bLeaf";b.h.ID=0;b.h.Type="LEAF";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("Leaf1",a);a=newl();b=newl();b.h.displayName="Twisty_Leaf";b.h.sellPrice=50;b.h.typeGen="bLeaf";b.h.ID=0;b.h.Type="LEAF";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("Leaf2",a);a=newl();b=newl();b.h.displayName="Arctic_Leaf";b.h.sellPrice=100;b.h.typeGen="bLeaf";b.h.ID=0;b.h.Type="LEAF";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("Leaf3",a);a=newl();b=newl();b.h.displayName="Galactic_Leaf";b.h.sellPrice=100;b.h.typeGen="bLeaf";b.h.ID=0;b.h.Type="LEAF";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("Leaf4",a);a=newl();b=newl();b.h.displayName="Magma_Leaf";b.h.sellPrice=100;b.h.typeGen="bLeaf";b.h.ID=0;b.h.Type="LEAF";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("Leaf5",a);a=newl();b=newl();b.h.displayName="Spirit_Leaf";b.h.sellPrice=100;b.h.typeGen="bLeaf";b.h.ID=0;b.h.Type="LEAF";b.h.lvReqToCraft="0";a.h.common=b;M.addNewItem("Leaf6",a);a=newl();b=newl();b.h.displayName="Not_Yet";b.h.sellPrice=4;b.h.typeGen="dFish";b.h.ID=0;b.h.Type="FISH";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Sorry_gamer,_but_this_material_isn't_in_the_game_yet!_You'll_have_to_wait_for_the_next_update_to_get_it.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("FillerMaterial",a);a=newl();b=newl();b.h.displayName="Goldfish";b.h.sellPrice=4;b.h.typeGen="dFish";b.h.ID=0;b.h.Type="FISH";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="It's_not_a_snack,_and_it_certainly_doesn't_smile_back..._for_copyright_reasons!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Fish1",a);a=newl();b=newl();b.h.displayName="Hermit_Can";b.h.sellPrice=11;b.h.typeGen="dFish";b.h.ID=0;b.h.Type="FISH";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="The_branding_on_the_soda_can_must_have_gotten_washed_off_by_some_kind_of_liquidy,_wavey_substance._Oh,_right.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Fish2",a);a=newl();b=newl();b.h.displayName="Jellyfish";b.h.sellPrice=14;b.h.typeGen="dFish";b.h.ID=0;b.h.Type="FISH";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Don't_let_it_sting_you,_unless_you're_into_getting_tinkled_on_by_random_beach-goers.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Fish3",a);a=newl();b=newl();b.h.displayName="Bloach";b.h.sellPrice=18;b.h.typeGen="dFish";b.h.ID=0;b.h.Type="FISH";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="The_result_of_putting_Blood_and_Leech_into_a_bad_pokemon_generator.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Fish4",a);a=newl();b=newl();b.h.displayName="Skelefish";b.h.sellPrice=25;b.h.typeGen="dFish";b.h.ID=0;b.h.Type="FISH";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Wow!_Tapping_on_it's_ribs_really_does_make_a_xylophone_noise!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Fish5",a);a=newl();b=newl();b.h.displayName="Sand_Shark";b.h.sellPrice=35;b.h.typeGen="dFish";b.h.ID=0;b.h.Type="FISH";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="It's_not_actually_made_of_sand,_not_even_in_this_universe.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Fish6",a);a=newl();b=newl();b.h.displayName="Manta_Ray";b.h.sellPrice=45;b.h.typeGen="dFish";b.h.ID=0;b.h.Type="FISH";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Watch_out_for_that_stinger!_It's_called_a_'stinger',_but_it_will_leave_more_of_a_deathy_feeling_than_a_stinging_one.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Fish7",a);a=newl();b=newl();b.h.displayName="Kraken";b.h.sellPrice=65;b.h.typeGen="dFish";b.h.ID=0;b.h.Type="FISH";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="The_tentacles_writhe_around_as_it_plots_it's_next_move_toward_bringing_an_end_to_this_plane_of_existence.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Fish8",a);a=newl();b=newl();b.h.displayName="Icefish";b.h.sellPrice=125;b.h.typeGen="dFish";b.h.ID=0;b.h.Type="FISH";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Scaled_and_icy,_this_coldblooded_predator_often_travels_out_of_the_briney_Seasalt_shores_to_the_Deepwater_Docks_to_prey_on_Sand_Sharks...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Fish9",a);a=newl();b=newl();b.h.displayName="Shellfish";b.h.sellPrice=205;b.h.typeGen="dFish";b.h.ID=0;b.h.Type="FISH";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="This_gooey_creature_evolved_from_a_common_ancestor_of_the_Dedotated_Ram,_hence_the_curled_shell_horns.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Fish10",a);a=newl();b=newl();b.h.displayName="Jumbo_Shrimp";b.h.sellPrice=555;b.h.typeGen="dFish";b.h.ID=0;b.h.Type="FISH";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Woah_momma_thats_a_big_shrimp...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Fish11",a);a=newl();b=newl();b.h.displayName="Caulifish";b.h.sellPrice=1255;b.h.typeGen="dFish";b.h.ID=0;b.h.Type="FISH";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Astonishingly,_despite_its_unthreatening_exterior_of_cauliflower_and_bread,_this_creature_sits_atop_the_food_chain_according_to_leading_IdleOn_Oceanographers._At_least,_based_on_currently_explored_seas...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Fish12",a);a=newl();b=newl();b.h.displayName="Equinox_Fish";b.h.sellPrice=1e3;b.h.typeGen="dFish";b.h.ID=0;b.h.Type="FISH";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Straight_from_the_Equinox_Valley_river,_the_scales_shimmer_and_shine_in_an_almost_impossible_way.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Fish13",a);a=newl();b=newl();b.h.displayName="Fly";b.h.sellPrice=3;b.h.typeGen="dBugs";b.h.ID=0;b.h.Type="BUG";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="I_don't_know_whyyyy_she_swallowed_a_flyyy,_perhaps_she'll_cry_from_being_perpetually_made_fun_of_in_the_form_of_a_nursey_rhyme_just_because_she_made_one_bad_decision..._er,_die!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Bug1",a);a=newl();b=newl();b.h.displayName="Butterfly";b.h.sellPrice=9;b.h.typeGen="dBugs";b.h.ID=0;b.h.Type="BUG";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Butter_Fly?_Get_it???_Sorry..._I_promise_I_wont_make_this_kind_of_joke_again";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Bug2",a);a=newl();b=newl();b.h.displayName="Sentient_Cereal";b.h.sellPrice=15;b.h.typeGen="dBugs";b.h.ID=0;b.h.Type="BUG";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Honestly,_I_was_shocked_too_at_first_when_I_learned_that_cereal_in_real_life_was_harvested_from_Cereal_Bugs._Seriously,_look_it_up!_Most_cereal_before_1960_were_made_from_harvested_Cereal_Bug_Nests!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Bug3",a);a=newl();b=newl();b.h.displayName="Fruitfly";b.h.sellPrice=20;b.h.typeGen="dBugs";b.h.ID=0;b.h.Type="BUG";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Hahaha_I_had_my_fingers_crossed!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Bug4",a);a=newl();b=newl();b.h.displayName="Mosquisnow";b.h.sellPrice=32;b.h.typeGen="dBugs";b.h.ID=0;b.h.Type="BUG";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="I'm_so_tired_of_all_these_blood_sucking_vermin_in_IdleOn..._and_these_mosquisnow_bugs_are_annoying_too!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Bug5",a);a=newl();b=newl();b.h.displayName="Flycicle";b.h.sellPrice=40;b.h.typeGen="dBugs";b.h.ID=0;b.h.Type="BUG";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Ok_these_bugs_are_really_not_making_any_sense_anymore.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Bug6",a);a=newl();b=newl();b.h.displayName="Worker_Bee";b.h.sellPrice=70;b.h.typeGen="dBugs";b.h.ID=0;b.h.Type="BUG";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="It's_a_bee_and_it's_working._As_per_the_Worker_Bee_Union_Act_of_1977,_I_am_barred_from_making_any_pun_or_joke_about_them.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Bug7",a);a=newl();b=newl();b.h.displayName="Fairy";b.h.sellPrice=120;b.h.typeGen="dBugs";b.h.ID=0;b.h.Type="BUG";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="It_glows_with_the_joy_of_a_being_that_knows_it's_not_real,_but_continues_to_exist_anyway.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Bug8",a);a=newl();b=newl();b.h.displayName="Scarab";b.h.sellPrice=200;b.h.typeGen="dBugs";b.h.ID=0;b.h.Type="BUG";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Amazingly,_these_bugs_have_adapted_around_being_static_images_with_no_animation,_and_are_able_to_fly_without_moving_their_wings!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Bug9",a);a=newl();b=newl();b.h.displayName="Dust_Mote";b.h.sellPrice=320;b.h.typeGen="dBugs";b.h.ID=0;b.h.Type="BUG";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Wait,_is_this_actually_just_a_piece_of_dust?_I_mean_it's_classified_as_a_bug_but_like,_I_mean..._the_classifiers_must_get_it_wrong_sometimes_right?";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Bug10",a);a=newl();b=newl();b.h.displayName="Dream_Particulate";b.h.sellPrice=320;b.h.typeGen="dBugs";b.h.ID=0;b.h.Type="BUG";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="It's_a_fluttering_piece_of_solid_dream._This_thing_right_here_could_really_do_some_damage_if_only_dreams_were_real_and_not_made_up_by_the_powers_that_be...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Bug11",a);a=newl();b=newl();b.h.displayName="Ladybug";b.h.sellPrice=320;b.h.typeGen="dBugs";b.h.ID=0;b.h.Type="BUG";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="The_black_polkadot_pattern_is_there_to_scare_away_predators._Fortunately_for_you,_you're_not_scared_of_black_dots!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Bug12",a);a=newl();b=newl();b.h.displayName="Firefly";b.h.sellPrice=320;b.h.typeGen="dBugs";b.h.ID=0;b.h.Type="BUG";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="As_you_gaze_upon_the_firefly's_majesty,_you_simply_CANNOT_BELIEVE_YOUR_EYEEES.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Bug13",a);a=newl();b=newl();b.h.displayName="Litterbug";b.h.sellPrice=320;b.h.typeGen="dBugs";b.h.ID=0;b.h.Type="BUG";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="The_way_they_shimmer_in_the_light_and_reflect_the_environmental_destruction_caused_by_the_packaged_goods_industry_fills_you_with_a_sense_of_awe.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Bug15",a);a=newl();b=newl();b.h.displayName="Froge";b.h.sellPrice=3;b.h.typeGen="dCritters";b.h.ID=0;b.h.Type="CRITTER";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="The_living_embodiment_of_the_classic_cryptocurrency_'Frogecoin'._Very_ribbit,_much_green,_wow!!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Critter1",a);a=newl();b=newl();b.h.displayName="Poison_Froge";b.h.sellPrice=100;b.h.typeGen="dCritters";b.h.ID=0;b.h.Type="CRITTER";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Ew,_it's_the_living_embodiment_of_that_scam_alt-coin_crypto_ripoff,_'Frogecoin_Cash'";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Critter1A",a);a=newl();b=newl();b.h.displayName="Crabbo";b.h.sellPrice=5;b.h.typeGen="dCritters";b.h.ID=0;b.h.Type="CRITTER";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Argg,_yer_spendin'_all_me_money!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Critter2",a);a=newl();b=newl();b.h.displayName="Mutant_Crabbo";b.h.sellPrice=2e3;b.h.typeGen="dCritters";b.h.ID=0;b.h.Type="CRITTER";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Argghgg,_yershpend_inall_memuh_knee!!..._Yea,_mutants_can't_speak_very_well,_probably_on_account_of_the_radiation_poisioning_and_all_that.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Critter2A",a);a=newl();b=newl();b.h.displayName="Scorpie";b.h.sellPrice=10;b.h.typeGen="dCritters";b.h.ID=0;b.h.Type="CRITTER";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="This_cutie_will_stab_its_way_into_your_heart_if_you_aren't_careful!_No_seriosuly,_be_careful,_the_bugger_pricked_my_foot_the_other_day_and_it_hurt_bad.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Critter3",a);a=newl();b=newl();b.h.displayName="Crescent_Scorpie";b.h.sellPrice=10;b.h.typeGen="dCritters";b.h.ID=0;b.h.Type="CRITTER";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="This_chrome_coloured_scorpion_came_straight_from_the_future!_Fuuuutuuuuureee!_FUUTUUURREE!!!_SOMEONE_DIRECT_ME_TO_THE_CAN_OPENERRRR!!!!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=1e4;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Critter3A",a);a=newl();b=newl();b.h.displayName="Mousey";b.h.sellPrice=15;b.h.typeGen="dCritters";b.h.ID=0;b.h.Type="CRITTER";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Adorable!!!_Look_how_cute_it's_tail_is,_and_that_itty_bitty_nose,_and_the_fact_that_it's_a_mouse_and_not_a_rat_so_I_don't_want_to_hit_it_with_a_broom!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Critter4",a);a=newl();b=newl();b.h.displayName="Nakeo_Moleo";b.h.sellPrice=3;b.h.typeGen="dCritters";b.h.ID=0;b.h.Type="CRITTER";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="This_mole_ain't_got_no_fur!_Ew,_gross!!_Disgusting_even!!!_What_kind_of_wretched_abomination_has_skin_but_no_thick_layer_of_fur??";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=25e3;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Critter4A",a);a=newl();b=newl();b.h.displayName="Owlio";b.h.sellPrice=23;b.h.typeGen="dCritters";b.h.ID=0;b.h.Type="CRITTER";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Hoot_hoot!_Yea_thats_all_I_got_for_this_one.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Critter5",a);a=newl();b=newl();b.h.displayName="Minervowl";b.h.sellPrice=3;b.h.typeGen="dCritters";b.h.ID=0;b.h.Type="CRITTER";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="It's_a_more_expensive_hoot,_I_guess._I_ain't_got_no_jokes_for_owls,_they're_too_cool.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=1e5;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Critter5A",a);a=newl();b=newl();b.h.displayName="Pingy";b.h.sellPrice=35;b.h.typeGen="dCritters";b.h.ID=0;b.h.Type="CRITTER";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="It's_basically_just_Gunter_but_with_RTX_off.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Critter6",a);a=newl();b=newl();b.h.displayName="Eternal_Lord_of|The_Undying_Ember";b.h.sellPrice=3;b.h.typeGen="dCritters";b.h.ID=0;b.h.Type="CRITTER";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Bow_before_the_destroyer_of_all_that_lies_outside_his_domain,_the_ruler_of_the_8th_dimension_and_all_that_it's_flame_encompasses,_the_bringer_of_light_to_the_blind,_and_darkness_to_those_who_recite_his_title_in_full._...ah_crap.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=2e5;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Critter6A",a);a=newl();b=newl();b.h.displayName="Bunny";b.h.sellPrice=47;b.h.typeGen="dCritters";b.h.ID=0;b.h.Type="CRITTER";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="It_could_use_a_carrot,_the_lil'_guy_needs_some_food!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Critter7",a);a=newl();b=newl();b.h.displayName="Purbunni";b.h.sellPrice=3;b.h.typeGen="dCritters";b.h.ID=0;b.h.Type="CRITTER";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="The_other_bunny_is_brilliant...";b.h.desc_line2="But_I_like_this_one_more.";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=5e5;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Critter7A",a);a=newl();b=newl();b.h.displayName="Dung_Beat";b.h.sellPrice=55;b.h.typeGen="dCritters";b.h.ID=0;b.h.Type="CRITTER";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_lean_closer_to_the_critter,_and_hear_it_say_'Dodo_tshh_do_dodo_tss_dodo_tss_badabada_dodoooo'._So_no,_that_name_isn't_a_typo.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Critter8",a);a=newl();b=newl();b.h.displayName="Jade_Scarab";b.h.sellPrice=3;b.h.typeGen="dCritters";b.h.ID=0;b.h.Type="CRITTER";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Oh_I_guess_this_one_is_a_scarab,_not_a_beetle._You_can_tell_because_of_the_way_it_is.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=1e6;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Critter8A",a);a=newl();b=newl();b.h.displayName="Honker";b.h.sellPrice=80;b.h.typeGen="dCritters";b.h.ID=0;b.h.Type="CRITTER";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="HONK!_HONK!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Critter9",a);a=newl();b=newl();b.h.displayName="Diamond_Duck";b.h.sellPrice=3;b.h.typeGen="dCritters";b.h.ID=0;b.h.Type="CRITTER";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="One_of_the_only_beings_strong_enough_to_take_on_the_Eternal_Lord_of_the_Undying_Ember_realm._Their_battle_would_be_legendary.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=5e6;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Critter9A",a);a=newl();b=newl();b.h.displayName="Blobfish";b.h.sellPrice=80;b.h.typeGen="dCritters";b.h.ID=0;b.h.Type="CRITTER";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Yo_look_at_dis_doooood!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Critter10",a);a=newl();b=newl();b.h.displayName="Voodofish";b.h.sellPrice=3;b.h.typeGen="dCritters";b.h.ID=0;b.h.Type="CRITTER";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Yo_bro_I_ain't_touchin'_that_thing_ain't_no_way!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=1e7;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Critter10A",a);a=newl();b=newl();b.h.displayName="Tuttle";b.h.sellPrice=80;b.h.typeGen="dCritters";b.h.ID=0;b.h.Type="CRITTER";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="He_jammin'_to_the_beat!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Critter11",a);a=newl();b=newl();b.h.displayName="Tottoise";b.h.sellPrice=3;b.h.typeGen="dCritters";b.h.ID=0;b.h.Type="CRITTER";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="He_out_here_livin'_his_best_life!_No_he_doesn't_look_familiar,_you're_just_being_silly._Very_silly.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=2e8;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Critter11A",a);a=newl();b=newl();b.h.displayName="Forest_Soul";b.h.sellPrice=3;b.h.typeGen="dSouls";b.h.ID=0;b.h.Type="SOUL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="The_soul_moans_ooOOOOooOOOoo,_because_it's_the_only_key_on_his_keyboard_that_works.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Soul1",a);a=newl();b=newl();b.h.displayName="Dune_Soul";b.h.sellPrice=9;b.h.typeGen="dSouls";b.h.ID=0;b.h.Type="SOUL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Fat_chonker_this_one_is!_It_must_be_the_moonmoon_diet_these_ghosts_have,_they_should_start_eating_some_of_those_fruits_for_a_change!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Soul2",a);a=newl();b=newl();b.h.displayName="Rooted_Soul";b.h.sellPrice=20;b.h.typeGen="dSouls";b.h.ID=0;b.h.Type="SOUL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="It's_smiling_as_if_it_knows_something_that_you_don't...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Soul3",a);a=newl();b=newl();b.h.displayName="Frigid_Soul";b.h.sellPrice=35;b.h.typeGen="dSouls";b.h.ID=0;b.h.Type="SOUL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Well,_his_mom_did_warn_him_if_that_he_kept_making_funny_faces_that_it'd_freeze_that_way!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Soul4",a);a=newl();b=newl();b.h.displayName="Squishy_Soul";b.h.sellPrice=50;b.h.typeGen="dSouls";b.h.ID=0;b.h.Type="SOUL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Don't_judge_their_expression,_you'd_be_mad_too_if_someone_squished_YOU_into_that_weirdo_lookin'_pattern!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Soul5",a);a=newl();b=newl();b.h.displayName="Oozie_Soul";b.h.sellPrice=70;b.h.typeGen="dSouls";b.h.ID=0;b.h.Type="SOUL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="He_be_oozin'_and_cruisin'_and_ain't_worried_'bout_nothin'";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Soul6",a);a=newl();b=newl();b.h.displayName="Breezy_Soul";b.h.sellPrice=70;b.h.typeGen="dSouls";b.h.ID=0;b.h.Type="SOUL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Calm_thoughts,_wavy_clouds,_he_just_wanna_fly.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Soul7",a);a=newl();b=newl();b.h.displayName="Deepsea_Soul";b.h.sellPrice=70;b.h.typeGen="dSouls";b.h.ID=0;b.h.Type="SOUL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="I_bet_this_octopus_fella_has_quite_the_garden,_I'd_love_to_be_there!_In_the_shade,_under_the_sea..._that'd_be_so_great...!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Soul8",a);a=newl();b=newl();b.h.displayName="Chapter_One|'The_Fear_Within'";b.h.sellPrice=70;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="SPELUNKY_PAGE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_boost_a_random_Lore_Bonus._The_more_pages_you_use,_the_better_the_boost!_@_@_@_@_@_@_@_@_@_You_can_view_Lore_Bonuses_through_the_CHAPTERS_button_found_in_the_corner_of_the_LORE_section_of_Spelunking!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Spelunking0",a);a=newl();b=newl();b.h.displayName="Chapter_Two|'Decay_Surrounds'";b.h.sellPrice=70;b.h.typeGen="bCraft";b.h.ID=1;b.h.Type="SPELUNKY_PAGE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_boost_a_random_Lore_Bonus._The_more_pages_you_use,_the_better_the_boost!_@_@_@_@_@_@_@_@_@_You_can_view_Lore_Bonuses_through_the_CHAPTERS_button_found_in_the_corner_of_the_LORE_section_of_Spelunking!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Spelunking1",a);a=newl();b=newl();b.h.displayName="Chapter_Three|'This_is_Gospel'";b.h.sellPrice=70;b.h.typeGen="bCraft";b.h.ID=2;b.h.Type="SPELUNKY_PAGE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_boost_a_random_Lore_Bonus._The_more_pages_you_use,_the_better_the_boost!_@_@_@_@_@_@_@_@_@_You_can_view_Lore_Bonuses_through_the_CHAPTERS_button_found_in_the_corner_of_the_LORE_section_of_Spelunking!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Spelunking2",a);a=newl();b=newl();b.h.displayName="Chapter_Four|'No_Escape'";b.h.sellPrice=70;b.h.typeGen="bCraft";b.h.ID=3;b.h.Type="SPELUNKY_PAGE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_boost_a_random_Lore_Bonus._The_more_pages_you_use,_the_better_the_boost!_@_@_@_@_@_@_@_@_@_You_can_view_Lore_Bonuses_through_the_CHAPTERS_button_found_in_the_corner_of_the_LORE_section_of_Spelunking!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Spelunking3",a);a=newl();b=newl();b.h.displayName="Chapter_Five|'Sunken_Plunder'";b.h.sellPrice=70;b.h.typeGen="bCraft";b.h.ID=4;b.h.Type="SPELUNKY_PAGE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_boost_a_random_Lore_Bonus._The_more_pages_you_use,_the_better_the_boost!_@_@_@_@_@_@_@_@_@_You_can_view_Lore_Bonuses_through_the_CHAPTERS_button_found_in_the_corner_of_the_LORE_section_of_Spelunking!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Spelunking4",a);a=newl();b=newl();b.h.displayName="Chapter_Six|'Kelp_Primeval'";b.h.sellPrice=70;b.h.typeGen="bCraft";b.h.ID=5;b.h.Type="SPELUNKY_PAGE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_boost_a_random_Lore_Bonus._The_more_pages_you_use,_the_better_the_boost!_@_@_@_@_@_@_@_@_@_You_can_view_Lore_Bonuses_through_the_CHAPTERS_button_found_in_the_corner_of_the_LORE_section_of_Spelunking!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Spelunking5",a);a=newl();b=newl();b.h.displayName="Chapter_Seven|'FILLER'";b.h.sellPrice=70;b.h.typeGen="bCraft";b.h.ID=6;b.h.Type="SPELUNKY_PAGE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_boost_a_random_Lore_Bonus._The_more_pages_you_use,_the_better_the_boost!_@_@_@_@_@_@_@_@_@_You_can_view_Lore_Bonuses_through_the_CHAPTERS_button_found_in_the_corner_of_the_LORE_section_of_Spelunking!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="_";b.h.Amount=0;b.h.Trigger=0;b.h.Cooldown=0;a.h.consumable=b;M.addNewConsumable("Spelunking6",a);a=newl();b=newl();b.h.displayName="Farmer_Brim";b.h.sellPrice=175;b.h.typeGen="aHelmet";b.h.ID=4;b.h.Type="HELMET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;M.addNewEquip("EquipmentHats1",a);a=newl();b=newl();b.h.displayName="Slime_Cap";b.h.sellPrice=200;b.h.typeGen="aHelmet";b.h.ID=2;b.h.Type="HELMET";b.h.lvReqToCraft="25";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="BEGINNER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=4;b.h.WIS=0;b.h.LUK=2;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("TestObj15",a);a=newl();b=newl();b.h.displayName="Ice_Cream_Sundae";b.h.sellPrice=200;b.h.typeGen="aHelmetMTX";b.h.ID=24;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="25";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=10;b.h.Defence=2;b.h.UQ1txt="%_MONEY";b.h.UQ1val=25;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentHatsBeg1",a);a=newl();b=newl();b.h.displayName="Mark_of_Member";b.h.sellPrice=200;b.h.typeGen="aHelmet";b.h.ID=64;b.h.Type="HELMET";b.h.lvReqToCraft="25";a.h.common=b;b=newl();b.h.lvReqToEquip=80;b.h.Class="BEGINNER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=20;b.h.Defence=50;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentHats61",a);a=newl();b=newl();b.h.displayName="Leather_Cap";b.h.sellPrice=400;b.h.typeGen="aHelmet";b.h.ID=18;b.h.Type="HELMET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=6;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=2;b.h.WIS=2;b.h.LUK=0;b.h.Defence=5;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentHats15",a);a=newl();b=newl();b.h.displayName="White_Headband";b.h.sellPrice=200;b.h.typeGen="aHelmet";b.h.ID=8;b.h.Type="HELMET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentHats5",a);a=newl();b=newl();b.h.displayName="Green_Headband";b.h.sellPrice=150;b.h.typeGen="aHelmet";b.h.ID=9;b.h.Type="HELMET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=4;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentHats6",a);a=newl();b=newl();b.h.displayName="Red_Headband";b.h.sellPrice=200;b.h.typeGen="aHelmet";b.h.ID=10;b.h.Type="HELMET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=0;b.h.WIS=0;b.h.LUK=2;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentHats7",a);a=newl();b=newl();b.h.displayName="Purple_Tupacband";b.h.sellPrice=200;b.h.typeGen="aHelmet";b.h.ID=11;b.h.Type="HELMET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=2;b.h.WIS=5;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentHats8",a);a=newl();b=newl();b.h.displayName="Yellow_Headband";b.h.sellPrice=200;b.h.typeGen="aHelmet";b.h.ID=12;b.h.Type="HELMET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=2;b.h.WIS=3;b.h.LUK=8;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentHats9",a);a=newl();b=newl();b.h.displayName="Pink_Headband";b.h.sellPrice=200;b.h.typeGen="aHelmetMTX";b.h.ID=13;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=4;b.h.AGI=4;b.h.WIS=4;b.h.LUK=4;b.h.Defence=0;b.h.UQ1txt="%_MASTERCLASS_DROPS";b.h.UQ1val=4;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentHats10",a);a=newl();b=newl();b.h.displayName="Grey_Beret";b.h.sellPrice=5;b.h.typeGen="aHelmet";b.h.ID=14;b.h.Type="HELMET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=1;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;M.addNewEquip("EquipmentHats11",a);a=newl();b=newl();b.h.displayName="Traffic_Cone";b.h.sellPrice=5;b.h.typeGen="aHelmet";b.h.ID=15;b.h.Type="HELMET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;M.addNewEquip("EquipmentHats12",a);a=newl();b=newl();b.h.displayName="Propeller_Cap";b.h.sellPrice=5;b.h.typeGen="aHelmet";b.h.ID=16;b.h.Type="HELMET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;M.addNewEquip("EquipmentHats13",a);a=newl();b=newl();b.h.displayName="Baseball_Hat";b.h.sellPrice=5;b.h.typeGen="aHelmet";b.h.ID=17;b.h.Type="HELMET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;M.addNewEquip("EquipmentHats14",a);a=newl();b=newl();b.h.displayName="Trojan_Helmet";b.h.sellPrice=200;b.h.typeGen="aHelmet";b.h.ID=1;b.h.Type="HELMET";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=2;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("TestObj14",a);a=newl();b=newl();b.h.displayName="Demon_Horns";b.h.sellPrice=200;b.h.typeGen="aHelmet";b.h.ID=3;b.h.Type="HELMET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=400;b.h.STR=3e3;b.h.AGI=3e3;b.h.WIS=3e3;b.h.LUK=3e3;b.h.Defence=1e4;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("TestObj16",a);a=newl();b=newl();b.h.displayName="Stump_Prop";b.h.sellPrice=200;b.h.typeGen="aHelmet";b.h.ID=7;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=0;b.h.AGI=3;b.h.WIS=0;b.h.LUK=4;b.h.Defence=2;b.h.UQ1txt="%_CHOP_EFFICIENCY";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentHats4Choppin",a);a=newl();b=newl();b.h.displayName="Copper_Helmet";b.h.sellPrice=1e3;b.h.typeGen="aHelmet";b.h.ID=20;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=8;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=0;b.h.Defence=7;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentHats17",a);a=newl();b=newl();b.h.displayName="Iron_Helmet";b.h.sellPrice=5e3;b.h.typeGen="aHelmet";b.h.ID=21;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentHats18",a);a=newl();b=newl();b.h.displayName="Gold_Helmet";b.h.sellPrice=15e3;b.h.typeGen="aHelmet";b.h.ID=32;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=35;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=7;b.h.AGI=7;b.h.WIS=7;b.h.LUK=0;b.h.Defence=15;b.h.UQ1txt="%_DEFENCE";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentHats28",a);a=newl();b=newl();b.h.displayName="Amarok_Helmet";b.h.sellPrice=100;b.h.typeGen="aHelmet";b.h.ID=26;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=38;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=4;b.h.AGI=4;b.h.WIS=4;b.h.LUK=4;b.h.Defence=20;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=6;a.h.equip=b;M.addNewEquip("EquipmentHats22",a);a=newl();b=newl();b.h.displayName="Platinum_Helmet";b.h.sellPrice=4e4;b.h.typeGen="aHelmet";b.h.ID=22;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=55;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=9;b.h.AGI=9;b.h.WIS=9;b.h.LUK=0;b.h.Defence=25;b.h.UQ1txt="%_DEFENCE";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentHats19",a);a=newl();b=newl();b.h.displayName="Dementia_Helmet";b.h.sellPrice=1;b.h.typeGen="aHelmet";b.h.ID=56;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=70;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=12;b.h.AGI=12;b.h.WIS=12;b.h.LUK=12;b.h.Defence=34;b.h.UQ1txt="%_DEFENCE";b.h.UQ1val=6;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentHats53",a);a=newl();b=newl();b.h.displayName="Efaunt_Helmet";b.h.sellPrice=1;b.h.typeGen="aHelmet";b.h.ID=55;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=80;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=8;b.h.AGI=8;b.h.WIS=8;b.h.LUK=8;b.h.Defence=38;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=6;a.h.equip=b;M.addNewEquip("EquipmentHats52",a);a=newl();b=newl();b.h.displayName="Void_Imperium|Helmet";b.h.sellPrice=1;b.h.typeGen="aHelmet";b.h.ID=57;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=90;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=15;b.h.AGI=15;b.h.WIS=15;b.h.LUK=15;b.h.Defence=46;b.h.UQ1txt="%_DEFENCE";b.h.UQ1val=8;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentHats54",a);a=newl();b=newl();b.h.displayName="Chizoar_Helmet";b.h.sellPrice=1;b.h.typeGen="aHelmet";b.h.ID=76;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=110;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=20;b.h.AGI=20;b.h.WIS=20;b.h.LUK=0;b.h.Defence=60;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=7;a.h.equip=b;M.addNewEquip("EquipmentHats68",a);a=newl();b=newl();b.h.displayName="Lustre_Veil";b.h.sellPrice=1;b.h.typeGen="aHelmet";b.h.ID=78;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=115;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=22;b.h.AGI=22;b.h.WIS=22;b.h.LUK=22;b.h.Defence=72;b.h.UQ1txt="%_DEFENCE";b.h.UQ1val=12;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=6;a.h.equip=b;M.addNewEquip("EquipmentHats70",a);a=newl();b=newl();b.h.displayName="Diabolical|Headcase";b.h.sellPrice=1;b.h.typeGen="aHelmet";b.h.ID=79;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=135;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=30;b.h.AGI=30;b.h.WIS=30;b.h.LUK=30;b.h.Defence=90;b.h.UQ1txt="%_DEFENCE";b.h.UQ1val=16;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=8;a.h.equip=b;M.addNewEquip("EquipmentHats71",a);a=newl();b=newl();b.h.displayName="Thin_Veil_of|The_Troll";b.h.sellPrice=1;b.h.typeGen="aHelmet";b.h.ID=82;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=180;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=7;b.h.STR=35;b.h.AGI=35;b.h.WIS=35;b.h.LUK=35;b.h.Defence=100;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=4;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=9;a.h.equip=b;M.addNewEquip("EquipmentHats74",a);a=newl();b=newl();b.h.displayName="Magma_Core|Headdress";b.h.sellPrice=1;b.h.typeGen="aHelmet";b.h.ID=85;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=210;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=9;b.h.STR=40;b.h.AGI=40;b.h.WIS=40;b.h.LUK=40;b.h.Defence=125;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=6;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=9;a.h.equip=b;M.addNewEquip("EquipmentHats77",a);a=newl();b=newl();b.h.displayName="Skulled_Helmet|of_the_Divine";b.h.sellPrice=1;b.h.typeGen="aHelmet";b.h.ID=91;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=300;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=12;b.h.STR=50;b.h.AGI=50;b.h.WIS=50;b.h.LUK=50;b.h.Defence=160;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=30;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=10;a.h.equip=b;M.addNewEquip("EquipmentHats83",a);a=newl();b=newl();b.h.displayName="Marbiglass|Headdress";b.h.sellPrice=1;b.h.typeGen="aHelmet";b.h.ID=97;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=360;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=14;b.h.STR=58;b.h.AGI=58;b.h.WIS=58;b.h.LUK=58;b.h.Defence=175;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=12;b.h.UQ2txt="%_MONEY";b.h.UQ2val=35;b.h.Upgrade_Slots_Left=10;a.h.equip=b;M.addNewEquip("EquipmentHats105",a);a=newl();b=newl();b.h.displayName="Crown_of_the_Gods";b.h.sellPrice=1;b.h.typeGen="aHelmet";b.h.ID=98;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=510;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=18;b.h.STR=65;b.h.AGI=65;b.h.WIS=65;b.h.LUK=65;b.h.Defence=210;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=15;b.h.UQ2txt="%_MULTIKILL_PER_TIER";b.h.UQ2val=22;b.h.Upgrade_Slots_Left=11;a.h.equip=b;M.addNewEquip("EquipmentHats106",a);a=newl();b=newl();b.h.displayName="Emperor_Kabuto";b.h.sellPrice=1;b.h.typeGen="aHelmet";b.h.ID=126;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=600;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=25;b.h.STR=80;b.h.AGI=80;b.h.WIS=80;b.h.LUK=80;b.h.Defence=270;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=25;b.h.UQ2txt="%_MULTIKILL_PER_TIER";b.h.UQ2val=30;b.h.Upgrade_Slots_Left=12;a.h.equip=b;M.addNewEquip("EquipmentHats119",a);a=newl();b=newl();b.h.displayName="Prehistoric|Battlehair";b.h.sellPrice=1;b.h.typeGen="aHelmet";b.h.ID=130;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=650;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=32;b.h.STR=140;b.h.AGI=140;b.h.WIS=140;b.h.LUK=140;b.h.Defence=450;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=25;b.h.UQ2txt="%_CLASS_EXP_MULTI";b.h.UQ2val=30;b.h.Upgrade_Slots_Left=12;a.h.equip=b;M.addNewEquip("EquipmentHats123",a);a=newl();b=newl();b.h.displayName="The_Crow_Perch";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=71;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;M.addNewEquip("EquipmentHats84",a);a=newl();b=newl();b.h.displayName="Birthday_Hat";b.h.sellPrice=1500;b.h.typeGen="aHelmetMTX";b.h.ID=25;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=10;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=5;b.h.Defence=10;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentHats21",a);a=newl();b=newl();b.h.displayName="Farmer_Brimer";b.h.sellPrice=150;b.h.typeGen="aHelmet";b.h.ID=27;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=3;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=4;b.h.WIS=2;b.h.LUK=0;b.h.Defence=4;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentHats23",a);a=newl();b=newl();b.h.displayName="Farmer_Brimest";b.h.sellPrice=400;b.h.typeGen="aHelmetMTX";b.h.ID=28;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentHats24",a);a=newl();b=newl();b.h.displayName="Bored_Beanie";b.h.sellPrice=500;b.h.typeGen="aHelmet";b.h.ID=29;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=8;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=7;b.h.WIS=0;b.h.LUK=3;b.h.Defence=5;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentHats25",a);a=newl();b=newl();b.h.displayName="Shiny_Bored|Beanie";b.h.sellPrice=500;b.h.typeGen="aHelmetMTX";b.h.ID=114;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=9;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=20;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=100;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentHats107",a);a=newl();b=newl();b.h.displayName="Royal_Turban";b.h.sellPrice=200;b.h.typeGen="aHelmet";b.h.ID=5;b.h.Type="HELMET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=70;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=15;b.h.WIS=0;b.h.LUK=0;b.h.Defence=7;b.h.UQ1txt="%_GOLD_FOOD_EFFECT";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=6;a.h.equip=b;M.addNewEquip("EquipmentHats2",a);a=newl();b=newl();b.h.displayName="Paper_Boat";b.h.sellPrice=1500;b.h.typeGen="aHelmet";b.h.ID=31;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=4;b.h.AGI=0;b.h.WIS=10;b.h.LUK=0;b.h.Defence=12;b.h.UQ1txt="%_FISHIN_EFFICINCY";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentHats27",a);a=newl();b=newl();b.h.displayName="Alien_Headband";b.h.sellPrice=1e3;b.h.typeGen="aHelmet";b.h.ID=33;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=13;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=3;b.h.WIS=11;b.h.LUK=0;b.h.Defence=4;b.h.UQ1txt="%_MANA_REGEN";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentHats29",a);a=newl();b=newl();b.h.displayName="Cowbo_Galloneer";b.h.sellPrice=1500;b.h.typeGen="aHelmet";b.h.ID=34;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=6;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="_BASE_DAMAGE";b.h.UQ1val=25;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentHats30",a);a=newl();b=newl();b.h.displayName="Grandma_Disguise";b.h.sellPrice=1500;b.h.typeGen="aHelmet";b.h.ID=42;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=35;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=15;b.h.LUK=0;b.h.Defence=5;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=7;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=6;a.h.equip=b;M.addNewEquip("EquipmentHats39",a);a=newl();b=newl();b.h.displayName="Santa_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=45;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentHats42",a);a=newl();b=newl();b.h.displayName="Epic_Santa_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=118;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=3;b.h.Defence=15;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentHats111",a);a=newl();b=newl();b.h.displayName="Jar";b.h.sellPrice=1;b.h.typeGen="aHelmet";b.h.ID=47;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=25;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=25;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentHats44",a);a=newl();b=newl();b.h.displayName="Big_Pretty_Bow";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=54;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentHats51",a);a=newl();b=newl();b.h.displayName="Steam_Cap";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=58;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentHats55",a);a=newl();b=newl();b.h.displayName="3rd_Anniversary|Ice_Cream_Topper";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=115;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=5;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=4;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=3;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentHats108",a);a=newl();b=newl();b.h.displayName="Bunny_Ears";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=59;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=4;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=4;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentHats56",a);a=newl();b=newl();b.h.displayName="Summer_Shell";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=66;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=4;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentHats63",a);a=newl();b=newl();b.h.displayName="Nuget_Cake_Fedora";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=72;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=40;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=10;b.h.Defence=0;b.h.UQ1txt="%_MULTIKILL";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=6;a.h.equip=b;M.addNewEquip("EquipmentHats64",a);a=newl();b=newl();b.h.displayName="Honker_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=74;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=60;b.h.UQ1txt="%_MONEY";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=7;a.h.equip=b;M.addNewEquip("EquipmentHats66",a);a=newl();b=newl();b.h.displayName="Acorn_Topper";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=75;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=0;b.h.Defence=30;b.h.UQ1txt="%_SKILL_EXP";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentHats67",a);a=newl();b=newl();b.h.displayName="Nondescript_Game|Show_Host_Hair";b.h.sellPrice=1;b.h.typeGen="aHelmet";b.h.ID=80;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=100;b.h.STR=25;b.h.AGI=40;b.h.WIS=0;b.h.LUK=50;b.h.Defence=0;b.h.UQ1txt="%_FAMILY";b.h.UQ1val=100;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=8;a.h.equip=b;M.addNewEquip("EquipmentHats72",a);a=newl();b=newl();b.h.displayName="Real_Civil|Engineer_Helmet";b.h.sellPrice=1;b.h.typeGen="aHelmet";b.h.ID=81;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=0;b.h.WIS=4;b.h.LUK=0;b.h.Defence=6;b.h.UQ1txt="%_FELLOW_ENGINEER";b.h.UQ1val=100;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentHats73",a);a=newl();b=newl();b.h.displayName="Apple_Launch_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=83;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentHats75",a);a=newl();b=newl();b.h.displayName="Funny_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=84;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=20;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=10;b.h.UQ1txt="%_SKILL_EFFICIENCY";b.h.UQ1val=6;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentHats76",a);a=newl();b=newl();b.h.displayName="Meteorhead";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=86;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=5;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentHats78",a);a=newl();b=newl();b.h.displayName="Ice_Guard_Helmet";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=87;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=5;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentHats79",a);a=newl();b=newl();b.h.displayName="Militia_Helm";b.h.sellPrice=8500;b.h.typeGen="aHelmet";b.h.ID=23;b.h.Type="HELMET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=10;b.h.Class="WARRIOR";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=7;b.h.AGI=2;b.h.WIS=0;b.h.LUK=0;b.h.Defence=11;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentHats20",a);a=newl();b=newl();b.h.displayName="Viking_Cap";b.h.sellPrice=200;b.h.typeGen="aHelmet";b.h.ID=0;b.h.Type="HELMET";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.lvReqToEquip=40;b.h.Class="WARRIOR";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=13;b.h.AGI=0;b.h.WIS=3;b.h.LUK=0;b.h.Defence=21;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("TestObj13",a);a=newl();b=newl();b.h.displayName="Murmillo_Helm";b.h.sellPrice=200;b.h.typeGen="aHelmet";b.h.ID=61;b.h.Type="HELMET";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="WARRIOR";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=20;b.h.AGI=0;b.h.WIS=10;b.h.LUK=0;b.h.Defence=55;b.h.UQ1txt="%_DEFENCE";b.h.UQ1val=12;b.h.UQ2txt="%_STR";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentHats58",a);a=newl();b=newl();b.h.displayName="Thief_Hood";b.h.sellPrice=8500;b.h.typeGen="aHelmet";b.h.ID=6;b.h.Type="HELMET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=10;b.h.Class="ARCHER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=6;b.h.WIS=0;b.h.LUK=0;b.h.Defence=9;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentHats3",a);a=newl();b=newl();b.h.displayName="Sleek_Coif";b.h.sellPrice=8500;b.h.typeGen="aHelmet";b.h.ID=44;b.h.Type="HELMET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=40;b.h.Class="ARCHER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=4;b.h.AGI=12;b.h.WIS=0;b.h.LUK=0;b.h.Defence=18;b.h.UQ1txt="%_CATCH_EFFICINCY";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentHats41",a);a=newl();b=newl();b.h.displayName="Conquistador|Plume";b.h.sellPrice=8500;b.h.typeGen="aHelmet";b.h.ID=62;b.h.Type="HELMET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="ARCHER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=7;b.h.AGI=23;b.h.WIS=0;b.h.LUK=0;b.h.Defence=47;b.h.UQ1txt="%_MOVEMENT_SPEED";b.h.UQ1val=8;b.h.UQ2txt="%_AGI";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentHats59",a);a=newl();b=newl();b.h.displayName="Top_Hat";b.h.sellPrice=8500;b.h.typeGen="aHelmet";b.h.ID=19;b.h.Type="HELMET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=10;b.h.Class="MAGE";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=8;b.h.LUK=1;b.h.Defence=7;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentHats16",a);a=newl();b=newl();b.h.displayName="Witch_Hat";b.h.sellPrice=800;b.h.typeGen="aHelmet";b.h.ID=30;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=40;b.h.Class="MAGE";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=1;b.h.WIS=16;b.h.LUK=0;b.h.Defence=15;b.h.UQ1txt="%_CHOP_EFFICIENCY";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentHats26",a);a=newl();b=newl();b.h.displayName="Adornment_of_the|High_Priest";b.h.sellPrice=800;b.h.typeGen="aHelmet";b.h.ID=63;b.h.Type="HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="MAGE";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=5;b.h.WIS=25;b.h.LUK=0;b.h.Defence=40;b.h.UQ1txt="%_CRIT_DAMAGE";b.h.UQ1val=30;b.h.UQ2txt="%_WIS";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentHats60",a);a=newl();b=newl();b.h.displayName="Boxing_Gloves";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=1;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=55;b.h.Weapon_Power=4;b.h.STR=2;b.h.AGI=0;b.h.WIS=0;b.h.LUK=2;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentPunching1",a);a=newl();b=newl();b.h.displayName="The_Stingers";b.h.sellPrice=1800;b.h.typeGen="aWeapon";b.h.ID=2;b.h.Type="FISTICUFF";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.lvReqToEquip=6;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=60;b.h.Weapon_Power=11;b.h.STR=5;b.h.AGI=0;b.h.WIS=0;b.h.LUK=5;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentPunching2",a);a=newl();b=newl();b.h.displayName="Bandage_Wraps";b.h.sellPrice=7800;b.h.typeGen="aWeapon";b.h.ID=3;b.h.Type="FISTICUFF";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.lvReqToEquip=25;b.h.Class="BEGINNER";b.h.Speed=7;b.h.Reach=65;b.h.Weapon_Power=20;b.h.STR=6;b.h.AGI=0;b.h.WIS=0;b.h.LUK=10;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentPunching3",a);a=newl();b=newl();b.h.displayName="Uninflated_Glove";b.h.sellPrice=7800;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="FISTICUFF";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="BEGINNER";b.h.Speed=8;b.h.Reach=65;b.h.Weapon_Power=27;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=13;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentPunching4",a);a=newl();b=newl();b.h.displayName="Eclectic_Ordeal";b.h.sellPrice=7800;b.h.typeGen="aWeapon";b.h.ID=5;b.h.Type="FISTICUFF";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.lvReqToEquip=85;b.h.Class="BEGINNER";b.h.Speed=9;b.h.Reach=85;b.h.Weapon_Power=32;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=17;b.h.Defence=0;b.h.UQ1txt="%_CRIT_CHANCE";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentPunching5",a);a=newl();b=newl();b.h.displayName="Knuckle_Sabers";b.h.sellPrice=7800;b.h.typeGen="aWeapon";b.h.ID=6;b.h.Type="FISTICUFF";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.lvReqToEquip=110;b.h.Class="BEGINNER";b.h.Speed=9;b.h.Reach=85;b.h.Weapon_Power=38;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=21;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=8;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentPunching6",a);a=newl();b=newl();b.h.displayName="Diabolical|Gauntlet";b.h.sellPrice=7800;b.h.typeGen="aWeapon";b.h.ID=7;b.h.Type="FISTICUFF";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.lvReqToEquip=130;b.h.Class="BEGINNER";b.h.Speed=9;b.h.Reach=96;b.h.Weapon_Power=45;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=30;b.h.Defence=0;b.h.UQ1txt="%_MOB_RESPAWN";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentPunching7",a);a=newl();b=newl();b.h.displayName="Molten_Core|Knucklers";b.h.sellPrice=7800;b.h.typeGen="aWeapon";b.h.ID=8;b.h.Type="FISTICUFF";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.lvReqToEquip=160;b.h.Class="BEGINNER";b.h.Speed=9;b.h.Reach=96;b.h.Weapon_Power=55;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=40;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=10;b.h.UQ2txt="%_MOB_RESPAWN";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentPunching8",a);a=newl();b=newl();b.h.displayName="Crackled_Skull|Destroyer";b.h.sellPrice=7800;b.h.typeGen="aWeapon";b.h.ID=9;b.h.Type="FISTICUFF";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.lvReqToEquip=270;b.h.Class="BEGINNER";b.h.Speed=10;b.h.Reach=96;b.h.Weapon_Power=66;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=52;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=15;b.h.UQ2txt="%_MOB_RESPAWN";b.h.UQ2val=15;b.h.Upgrade_Slots_Left=6;a.h.equip=b;M.addNewEquip("EquipmentPunching9",a);a=newl();b=newl();b.h.displayName="Pentastud_Slapper";b.h.sellPrice=7800;b.h.typeGen="aWeapon";b.h.ID=10;b.h.Type="FISTICUFF";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.lvReqToEquip=360;b.h.Class="BEGINNER";b.h.Speed=10;b.h.Reach=96;b.h.Weapon_Power=75;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=65;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=25;b.h.UQ2txt="%_MONEY";b.h.UQ2val=60;b.h.Upgrade_Slots_Left=6;a.h.equip=b;M.addNewEquip("EquipmentPunching10",a);a=newl();b=newl();b.h.displayName="Mittens_of_the|Gods";b.h.sellPrice=7800;b.h.typeGen="aWeapon";b.h.ID=11;b.h.Type="FISTICUFF";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.lvReqToEquip=510;b.h.Class="BEGINNER";b.h.Speed=10;b.h.Reach=96;b.h.Weapon_Power=90;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=82;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=120;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=40;b.h.Upgrade_Slots_Left=7;a.h.equip=b;M.addNewEquip("EquipmentPunching11",a);a=newl();b=newl();b.h.displayName="Talon_of_the|Hawk";b.h.sellPrice=7800;b.h.typeGen="aWeapon";b.h.ID=12;b.h.Type="FISTICUFF";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.lvReqToEquip=650;b.h.Class="BEGINNER";b.h.Speed=10;b.h.Reach=96;b.h.Weapon_Power=110;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=100;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_BONUS";b.h.UQ1val=50;b.h.UQ2txt="%_CLASS_EXP_MULTI";b.h.UQ2val=30;b.h.Upgrade_Slots_Left=7;a.h.equip=b;M.addNewEquip("EquipmentPunching12",a);a=newl();b=newl();b.h.displayName="Wooden_Spear";b.h.sellPrice=265;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="SPEAR";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=70;b.h.Weapon_Power=10;b.h.STR=3;b.h.AGI=0;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;M.addNewEquip("TestObj1",a);a=newl();b=newl();b.h.displayName="Steel_Axe";b.h.sellPrice=5500;b.h.typeGen="aWeapon";b.h.ID=6;b.h.Type="SPEAR";b.h.lvReqToCraft="20";a.h.common=b;b=newl();b.h.lvReqToEquip=11;b.h.Class="WARRIOR";b.h.Speed=5;b.h.Reach=62;b.h.Weapon_Power=15;b.h.STR=7;b.h.AGI=0;b.h.WIS=3;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("TestObj7",a);a=newl();b=newl();b.h.displayName="Royal_Bayonet";b.h.sellPrice=12530;b.h.typeGen="aWeapon";b.h.ID=3;b.h.Type="SPEAR";b.h.lvReqToCraft="25";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="WARRIOR";b.h.Speed=5;b.h.Reach=95;b.h.Weapon_Power=20;b.h.STR=10;b.h.AGI=0;b.h.WIS=2;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("TestObj3",a);a=newl();b=newl();b.h.displayName="Enforced_Slasher";b.h.sellPrice=26e3;b.h.typeGen="aWeapon";b.h.ID=7;b.h.Type="SPEAR";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="WARRIOR";b.h.Speed=5;b.h.Reach=80;b.h.Weapon_Power=26;b.h.STR=11;b.h.AGI=0;b.h.WIS=4;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentSword1",a);a=newl();b=newl();b.h.displayName="The_Ice_Breaker";b.h.sellPrice=26e3;b.h.typeGen="aWeapon";b.h.ID=8;b.h.Type="SPEAR";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.lvReqToEquip=75;b.h.Class="WARRIOR";b.h.Speed=5;b.h.Reach=76;b.h.Weapon_Power=33;b.h.STR=13;b.h.AGI=0;b.h.WIS=6;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CRIT_DAMAGE";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentSword2",a);a=newl();b=newl();b.h.displayName="Deuscythe";b.h.sellPrice=26e3;b.h.typeGen="aWeapon";b.h.ID=9;b.h.Type="SPEAR";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.lvReqToEquip=90;b.h.Class="WARRIOR";b.h.Speed=6;b.h.Reach=88;b.h.Weapon_Power=40;b.h.STR=20;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CRIT_DAMAGE";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentSword3",a);a=newl();b=newl();b.h.displayName="Slimsharp_Fin";b.h.sellPrice=26e3;b.h.typeGen="aWeapon";b.h.ID=10;b.h.Type="SPEAR";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.lvReqToEquip=110;b.h.Class="WARRIOR";b.h.Speed=6;b.h.Reach=92;b.h.Weapon_Power=48;b.h.STR=24;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=6;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentSword4",a);a=newl();b=newl();b.h.displayName="Diabolical|Flesh_Ripper";b.h.sellPrice=26e3;b.h.typeGen="aWeapon";b.h.ID=11;b.h.Type="SPEAR";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.lvReqToEquip=130;b.h.Class="WARRIOR";b.h.Speed=7;b.h.Reach=92;b.h.Weapon_Power=58;b.h.STR=30;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MOB_RESPAWN";b.h.UQ1val=8;b.h.UQ2txt="%_TOTAL_DAMAGE";b.h.UQ2val=6;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentSword5",a);a=newl();b=newl();b.h.displayName="Magma_Maul";b.h.sellPrice=26e3;b.h.typeGen="aWeapon";b.h.ID=12;b.h.Type="SPEAR";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.lvReqToEquip=160;b.h.Class="WARRIOR";b.h.Speed=7;b.h.Reach=92;b.h.Weapon_Power=70;b.h.STR=40;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=12;b.h.UQ2txt="%_MOB_RESPAWN";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentSword6",a);a=newl();b=newl();b.h.displayName="Skull_Lance";b.h.sellPrice=26e3;b.h.typeGen="aWeapon";b.h.ID=13;b.h.Type="SPEAR";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.lvReqToEquip=250;b.h.Class="WARRIOR";b.h.Speed=8;b.h.Reach=116;b.h.Weapon_Power=85;b.h.STR=52;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=15;b.h.UQ2txt="%_MOB_RESPAWN";b.h.UQ2val=12;b.h.Upgrade_Slots_Left=6;a.h.equip=b;M.addNewEquip("EquipmentSword7",a);a=newl();b=newl();b.h.displayName="Elegant_Spear";b.h.sellPrice=26e3;b.h.typeGen="aWeapon";b.h.ID=14;b.h.Type="SPEAR";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.lvReqToEquip=375;b.h.Class="WARRIOR";b.h.Speed=8;b.h.Reach=116;b.h.Weapon_Power=97;b.h.STR=65;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=25;b.h.UQ2txt="%_MONEY";b.h.UQ2val=30;b.h.Upgrade_Slots_Left=6;a.h.equip=b;M.addNewEquip("EquipmentSword8",a);a=newl();b=newl();b.h.displayName="Massive|Godbreaker";b.h.sellPrice=26e3;b.h.typeGen="aWeapon";b.h.ID=15;b.h.Type="SPEAR";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.lvReqToEquip=525;b.h.Class="WARRIOR";b.h.Speed=9;b.h.Reach=132;b.h.Weapon_Power=112;b.h.STR=80;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=60;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=20;b.h.Upgrade_Slots_Left=7;a.h.equip=b;M.addNewEquip("EquipmentSword9",a);a=newl();b=newl();b.h.displayName="Sabertoothed|Gorehacker";b.h.sellPrice=26e3;b.h.typeGen="aWeapon";b.h.ID=16;b.h.Type="SPEAR";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.lvReqToEquip=650;b.h.Class="WARRIOR";b.h.Speed=9;b.h.Reach=106;b.h.Weapon_Power=140;b.h.STR=120;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_BONUS";b.h.UQ1val=30;b.h.UQ2txt="%_CLASS_EXP_MULTI";b.h.UQ2val=25;b.h.Upgrade_Slots_Left=7;a.h.equip=b;M.addNewEquip("EquipmentSword10",a);a=newl();b=newl();b.h.displayName="Frozen_Impaler";b.h.sellPrice=120;b.h.typeGen="aWeapon";b.h.ID=99;b.h.Type="SPEAR";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.lvReqToEquip=45;b.h.Class="WARRIOR";b.h.Speed=3;b.h.Reach=100;b.h.Weapon_Power=66;b.h.STR=4;b.h.AGI=2;b.h.WIS=9;b.h.LUK=2;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("TestObj4",a);a=newl();b=newl();b.h.displayName="Blood_Screamer";b.h.sellPrice=200;b.h.typeGen="aWeapon";b.h.ID=2;b.h.Type="SPEAR";b.h.lvReqToCraft="30";a.h.common=b;b=newl();b.h.lvReqToEquip=55;b.h.Class="WARRIOR";b.h.Speed=10;b.h.Reach=84;b.h.Weapon_Power=87;b.h.STR=5;b.h.AGI=15;b.h.WIS=5;b.h.LUK=5;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("TestObj5",a);a=newl();b=newl();b.h.displayName="Flaming_Katana";b.h.sellPrice=200;b.h.typeGen="aWeapon";b.h.ID=99;b.h.Type="SWORD";b.h.lvReqToCraft="30";a.h.common=b;b=newl();b.h.lvReqToEquip=85;b.h.Class="WARRIOR";b.h.Speed=7;b.h.Reach=74;b.h.Weapon_Power=36;b.h.STR=0;b.h.AGI=0;b.h.WIS=6;b.h.LUK=8;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("TestObj8",a);a=newl();b=newl();b.h.displayName="Emerald_Eizon";b.h.sellPrice=200;b.h.typeGen="aWeapon";b.h.ID=99;b.h.Type="SWORD";b.h.lvReqToCraft="40";a.h.common=b;b=newl();b.h.lvReqToEquip=95;b.h.Class="WARRIOR";b.h.Speed=7;b.h.Reach=76;b.h.Weapon_Power=45;b.h.STR=0;b.h.AGI=0;b.h.WIS=3;b.h.LUK=2;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("TestObj9",a);a=newl();b=newl();b.h.displayName="Stalagmite";b.h.sellPrice=200;b.h.typeGen="aWeapon";b.h.ID=99;b.h.Type="SWORD";b.h.lvReqToCraft="62";a.h.common=b;b=newl();b.h.lvReqToEquip=155;b.h.Class="WARRIOR";b.h.Speed=8;b.h.Reach=78;b.h.Weapon_Power=55;b.h.STR=10;b.h.AGI=5;b.h.WIS=6;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("TestObj10",a);a=newl();b=newl();b.h.displayName="Iron_Sword";b.h.sellPrice=200;b.h.typeGen="aWeapon";b.h.ID=1;b.h.Type="SPEAR";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="WARRIOR";b.h.Speed=10;b.h.Reach=78;b.h.Weapon_Power=32;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentWeapons1",a);a=newl();b=newl();b.h.displayName="Steel_Spear";b.h.sellPrice=223400;b.h.typeGen="aWeapon";b.h.ID=99;b.h.Type="SPEAR";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.lvReqToEquip=25;b.h.Class="WARRIOR";b.h.Speed=2;b.h.Reach=90;b.h.Weapon_Power=40;b.h.STR=2;b.h.AGI=0;b.h.WIS=3;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("TestObj2",a);a=newl();b=newl();b.h.displayName="Wooden_Bow";b.h.sellPrice=275;b.h.typeGen="aWeapon";b.h.ID=1;b.h.Type="BOW";b.h.lvReqToCraft="4";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=150;b.h.Weapon_Power=10;b.h.STR=2;b.h.AGI=3;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;M.addNewEquip("EquipmentBows1",a);a=newl();b=newl();b.h.displayName="Birch_Longbow";b.h.sellPrice=1e3;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=12;b.h.Class="ARCHER";b.h.Speed=6;b.h.Reach=170;b.h.Weapon_Power=15;b.h.STR=4;b.h.AGI=5;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentBows3",a);a=newl();b=newl();b.h.displayName="Carrot_Launcher";b.h.sellPrice=5e3;b.h.typeGen="aWeapon";b.h.ID=3;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=18;b.h.Class="ARCHER";b.h.Speed=2;b.h.Reach=225;b.h.Weapon_Power=22;b.h.STR=0;b.h.AGI=8;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentBows4",a);a=newl();b=newl();b.h.displayName="Spiked_Menace";b.h.sellPrice=4e3;b.h.typeGen="aWeapon";b.h.ID=5;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ARCHER";b.h.Speed=6;b.h.Reach=175;b.h.Weapon_Power=17;b.h.STR=5;b.h.AGI=8;b.h.WIS=0;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentBows5",a);a=newl();b=newl();b.h.displayName="Pharaoh_Bow";b.h.sellPrice=15e3;b.h.typeGen="aWeapon";b.h.ID=6;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="ARCHER";b.h.Speed=6;b.h.Reach=200;b.h.Weapon_Power=23;b.h.STR=1;b.h.AGI=13;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentBows6",a);a=newl();b=newl();b.h.displayName="Blizzard_Bow";b.h.sellPrice=15e3;b.h.typeGen="aWeapon";b.h.ID=7;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=75;b.h.Class="ARCHER";b.h.Speed=6;b.h.Reach=205;b.h.Weapon_Power=30;b.h.STR=0;b.h.AGI=15;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CRIT_DAMAGE";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentBows7",a);a=newl();b=newl();b.h.displayName="Blackhole_Bow";b.h.sellPrice=15e3;b.h.typeGen="aWeapon";b.h.ID=2;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=90;b.h.Class="ARCHER";b.h.Speed=7;b.h.Reach=230;b.h.Weapon_Power=36;b.h.STR=10;b.h.AGI=13;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CRIT_DAMAGE";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentBows8",a);a=newl();b=newl();b.h.displayName="Shardsure_Leif";b.h.sellPrice=15e3;b.h.typeGen="aWeapon";b.h.ID=8;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=110;b.h.Class="ARCHER";b.h.Speed=7;b.h.Reach=255;b.h.Weapon_Power=44;b.h.STR=12;b.h.AGI=16;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=6;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentBows9",a);a=newl();b=newl();b.h.displayName="Diabolical|Continuit";b.h.sellPrice=15e3;b.h.typeGen="aWeapon";b.h.ID=9;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=130;b.h.Class="ARCHER";b.h.Speed=8;b.h.Reach=300;b.h.Weapon_Power=54;b.h.STR=14;b.h.AGI=20;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MOB_RESPAWN";b.h.UQ1val=8;b.h.UQ2txt="%_TOTAL_DAMAGE";b.h.UQ2val=6;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentBows10",a);a=newl();b=newl();b.h.displayName="Sediment_Core|Grunkler";b.h.sellPrice=15e3;b.h.typeGen="aWeapon";b.h.ID=10;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=160;b.h.Class="ARCHER";b.h.Speed=8;b.h.Reach=320;b.h.Weapon_Power=65;b.h.STR=20;b.h.AGI=30;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=12;b.h.UQ2txt="%_MOB_RESPAWN";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentBows11",a);a=newl();b=newl();b.h.displayName="Spine_Tingler|Sniper";b.h.sellPrice=15e3;b.h.typeGen="aWeapon";b.h.ID=11;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=250;b.h.Class="ARCHER";b.h.Speed=9;b.h.Reach=340;b.h.Weapon_Power=80;b.h.STR=25;b.h.AGI=41;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=15;b.h.UQ2txt="%_MOB_RESPAWN";b.h.UQ2val=12;b.h.Upgrade_Slots_Left=6;a.h.equip=b;M.addNewEquip("EquipmentBows12",a);a=newl();b=newl();b.h.displayName="Pristine_Longbow";b.h.sellPrice=15e3;b.h.typeGen="aWeapon";b.h.ID=12;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=375;b.h.Class="ARCHER";b.h.Speed=9;b.h.Reach=350;b.h.Weapon_Power=95;b.h.STR=30;b.h.AGI=52;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=25;b.h.UQ2txt="%_MONEY";b.h.UQ2val=30;b.h.Upgrade_Slots_Left=6;a.h.equip=b;M.addNewEquip("EquipmentBows13",a);a=newl();b=newl();b.h.displayName="Doublestring|Godshooter";b.h.sellPrice=15e3;b.h.typeGen="aWeapon";b.h.ID=13;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=525;b.h.Class="ARCHER";b.h.Speed=10;b.h.Reach=370;b.h.Weapon_Power=110;b.h.STR=37;b.h.AGI=70;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=60;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=20;b.h.Upgrade_Slots_Left=7;a.h.equip=b;M.addNewEquip("EquipmentBows14",a);a=newl();b=newl();b.h.displayName="Raptor|Shardslinger";b.h.sellPrice=15e3;b.h.typeGen="aWeapon";b.h.ID=14;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=650;b.h.Class="ARCHER";b.h.Speed=10;b.h.Reach=370;b.h.Weapon_Power=140;b.h.STR=50;b.h.AGI=115;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_BONUS";b.h.UQ1val=30;b.h.UQ2txt="%_CLASS_EXP_MULTI";b.h.UQ2val=25;b.h.Upgrade_Slots_Left=7;a.h.equip=b;M.addNewEquip("EquipmentBows15",a);a=newl();b=newl();b.h.displayName="Gnarled_Wand";b.h.sellPrice=20;b.h.typeGen="aWeapon";b.h.ID=3;b.h.Type="WAND";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=115;b.h.Weapon_Power=10;b.h.STR=0;b.h.AGI=0;b.h.WIS=4;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;M.addNewEquip("EquipmentWands1",a);a=newl();b=newl();b.h.displayName="Quarterstaff";b.h.sellPrice=4e3;b.h.typeGen="aWeapon";b.h.ID=1;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=12;b.h.Class="MAGE";b.h.Speed=4;b.h.Reach=120;b.h.Weapon_Power=16;b.h.STR=0;b.h.AGI=0;b.h.WIS=9;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentWands2",a);a=newl();b=newl();b.h.displayName="Starlight";b.h.sellPrice=1e4;b.h.typeGen="aWeapon";b.h.ID=5;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="MAGE";b.h.Speed=4;b.h.Reach=145;b.h.Weapon_Power=23;b.h.STR=0;b.h.AGI=1;b.h.WIS=11;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentWands5",a);a=newl();b=newl();b.h.displayName="Crows_Nest";b.h.sellPrice=200;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="MAGE";b.h.Speed=5;b.h.Reach=160;b.h.Weapon_Power=30;b.h.STR=0;b.h.AGI=5;b.h.WIS=9;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MOVEMENT_SPEED";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentWands6",a);a=newl();b=newl();b.h.displayName="Spriggly_Storm";b.h.sellPrice=200;b.h.typeGen="aWeapon";b.h.ID=2;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=75;b.h.Class="MAGE";b.h.Speed=5;b.h.Reach=155;b.h.Weapon_Power=36;b.h.STR=0;b.h.AGI=0;b.h.WIS=15;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_CRIT_DAMAGE";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentWands3",a);a=newl();b=newl();b.h.displayName="Grey_Gatsby";b.h.sellPrice=200;b.h.typeGen="aWeapon";b.h.ID=6;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=90;b.h.Class="MAGE";b.h.Speed=6;b.h.Reach=170;b.h.Weapon_Power=43;b.h.STR=0;b.h.AGI=10;b.h.WIS=13;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_CRIT_DAMAGE";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentWands7",a);a=newl();b=newl();b.h.displayName="Skullslip_Hallow";b.h.sellPrice=200;b.h.typeGen="aWeapon";b.h.ID=7;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=110;b.h.Class="MAGE";b.h.Speed=6;b.h.Reach=195;b.h.Weapon_Power=51;b.h.STR=0;b.h.AGI=12;b.h.WIS=18;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=6;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentWands8",a);a=newl();b=newl();b.h.displayName="Diabolical|Opticule";b.h.sellPrice=200;b.h.typeGen="aWeapon";b.h.ID=8;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=130;b.h.Class="MAGE";b.h.Speed=7;b.h.Reach=250;b.h.Weapon_Power=61;b.h.STR=0;b.h.AGI=13;b.h.WIS=25;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MOB_RESPAWN";b.h.UQ1val=8;b.h.UQ2txt="%_TOTAL_DAMAGE";b.h.UQ2val=6;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentWands9",a);a=newl();b=newl();b.h.displayName="Cattle_Core|Soothsayer_Staff";b.h.sellPrice=200;b.h.typeGen="aWeapon";b.h.ID=9;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=160;b.h.Class="MAGE";b.h.Speed=8;b.h.Reach=275;b.h.Weapon_Power=75;b.h.STR=0;b.h.AGI=20;b.h.WIS=35;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=12;b.h.UQ2txt="%_MOB_RESPAWN";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentWands10",a);a=newl();b=newl();b.h.displayName="Staff_of_the|Undead_Plague";b.h.sellPrice=200;b.h.typeGen="aWeapon";b.h.ID=10;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=250;b.h.Class="MAGE";b.h.Speed=8;b.h.Reach=300;b.h.Weapon_Power=94;b.h.STR=0;b.h.AGI=23;b.h.WIS=54;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=15;b.h.UQ2txt="%_MOB_RESPAWN";b.h.UQ2val=12;b.h.Upgrade_Slots_Left=6;a.h.equip=b;M.addNewEquip("EquipmentWands11",a);a=newl();b=newl();b.h.displayName="Sparky_Marble|Staff";b.h.sellPrice=200;b.h.typeGen="aWeapon";b.h.ID=11;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=375;b.h.Class="MAGE";b.h.Speed=8;b.h.Reach=310;b.h.Weapon_Power=108;b.h.STR=0;b.h.AGI=30;b.h.WIS=70;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=25;b.h.UQ2txt="%_MONEY";b.h.UQ2val=30;b.h.Upgrade_Slots_Left=6;a.h.equip=b;M.addNewEquip("EquipmentWands12",a);a=newl();b=newl();b.h.displayName="Magnifique|Godcaster";b.h.sellPrice=200;b.h.typeGen="aWeapon";b.h.ID=12;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=525;b.h.Class="MAGE";b.h.Speed=9;b.h.Reach=80;b.h.Weapon_Power=125;b.h.STR=0;b.h.AGI=40;b.h.WIS=80;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=60;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=20;b.h.Upgrade_Slots_Left=7;a.h.equip=b;M.addNewEquip("EquipmentWands13",a);a=newl();b=newl();b.h.displayName="Beastly|Orblauncher";b.h.sellPrice=200;b.h.typeGen="aWeapon";b.h.ID=13;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=650;b.h.Class="MAGE";b.h.Speed=9;b.h.Reach=80;b.h.Weapon_Power=152;b.h.STR=0;b.h.AGI=50;b.h.WIS=140;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_BONUS";b.h.UQ1val=30;b.h.UQ2txt="%_CLASS_EXP_MULTI";b.h.UQ2val=25;b.h.Upgrade_Slots_Left=7;a.h.equip=b;M.addNewEquip("EquipmentWands14",a);a=newl();b=newl();b.h.displayName="Microphone";b.h.sellPrice=200;b.h.typeGen="aWeapon";b.h.ID=2;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="MAGE";b.h.Speed=8;b.h.Reach=160;b.h.Weapon_Power=13;b.h.STR=0;b.h.AGI=5;b.h.WIS=9;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MOVEMENT_SPEED";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentWands4",a);a=newl();b=newl();b.h.displayName="Orange_Tee";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;M.addNewEquip("EquipmentShirts1",a);a=newl();b=newl();b.h.displayName="MCR_Tshirt";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=25;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=8;b.h.WIS=0;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentShirts17",a);a=newl();b=newl();b.h.displayName="Planktop";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=10;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=6;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=4;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentShirts19",a);a=newl();b=newl();b.h.displayName="Hide_Shirt";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="WARRIOR";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=6;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=4;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentShirts20",a);a=newl();b=newl();b.h.displayName="Green_Tee";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=3;b.h.Defence=4;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;M.addNewEquip("EquipmentShirts24",a);a=newl();b=newl();b.h.displayName="Purple_Tee";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=3;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;M.addNewEquip("EquipmentShirts25",a);a=newl();b=newl();b.h.displayName="Blue_Tee";b.h.sellPrice=250;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="4";a.h.common=b;b=newl();b.h.lvReqToEquip=5;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=5;b.h.WIS=5;b.h.LUK=0;b.h.Defence=7;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentShirts2",a);a=newl();b=newl();b.h.displayName="Spore_Tee";b.h.sellPrice=125;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=3;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;M.addNewEquip("EquipmentShirts16",a);a=newl();b=newl();b.h.displayName="Black_Tee";b.h.sellPrice=50;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=5;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentShirts3",a);a=newl();b=newl();b.h.displayName="Tanned_Hide";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ARCHER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=3;b.h.AGI=3;b.h.WIS=0;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentShirts4",a);a=newl();b=newl();b.h.displayName="Molten_Chest";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="WARRIOR";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=3;b.h.AGI=3;b.h.WIS=0;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentShirts7",a);a=newl();b=newl();b.h.displayName="REPLACE_ME";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="BEGINNER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=3;b.h.AGI=3;b.h.WIS=0;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentShirts8",a);a=newl();b=newl();b.h.displayName="REPLACE_ME";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=3;b.h.AGI=3;b.h.WIS=0;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentShirts9",a);a=newl();b=newl();b.h.displayName="Tattered_Cloth";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="MAGE";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=8;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentShirts21",a);a=newl();b=newl();b.h.displayName="Fur_Shirt";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=18;b.h.Class="ARCHER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=5;b.h.AGI=9;b.h.WIS=0;b.h.LUK=0;b.h.Defence=13;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentShirts10",a);a=newl();b=newl();b.h.displayName="Copper_Platebody";b.h.sellPrice=1500;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=8;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentShirts11",a);a=newl();b=newl();b.h.displayName="Iron_Platebody";b.h.sellPrice=6e3;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=4;b.h.AGI=4;b.h.WIS=4;b.h.LUK=0;b.h.Defence=16;b.h.UQ1txt="0";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentShirts12",a);a=newl();b=newl();b.h.displayName="Gold_Platebody";b.h.sellPrice=12e3;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=35;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=0;b.h.Defence=20;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentShirts13",a);a=newl();b=newl();b.h.displayName="Amarok_Bodyplate";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=35;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=7;b.h.AGI=7;b.h.WIS=7;b.h.LUK=0;b.h.Defence=25;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentShirts18",a);a=newl();b=newl();b.h.displayName="Platinum_Platbody";b.h.sellPrice=4e4;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=8;b.h.AGI=8;b.h.WIS=8;b.h.LUK=0;b.h.Defence=30;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentShirts14",a);a=newl();b=newl();b.h.displayName="Mining_Overalls";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=40;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=12;b.h.AGI=10;b.h.WIS=0;b.h.LUK=0;b.h.Defence=19;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentShirts40",a);a=newl();b=newl();b.h.displayName="Studded_Hide";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=40;b.h.Class="WARRIOR";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=10;b.h.AGI=0;b.h.WIS=4;b.h.LUK=0;b.h.Defence=25;b.h.UQ1txt="%_FISHIN_EFFICINCY";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentShirts5",a);a=newl();b=newl();b.h.displayName="Feral_Leathering";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=40;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=12;b.h.WIS=0;b.h.LUK=0;b.h.Defence=19;b.h.UQ1txt="%_CATCH_EFFICINCY";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentShirts23",a);a=newl();b=newl();b.h.displayName="Furled_Robes";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=40;b.h.Class="MAGE";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=1;b.h.WIS=13;b.h.LUK=0;b.h.Defence=15;b.h.UQ1txt="%_CHOP_EFFICIENCY";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentShirts22",a);a=newl();b=newl();b.h.displayName="Dementia_Body";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=70;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=0;b.h.Defence=40;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentShirts15",a);a=newl();b=newl();b.h.displayName="Efaunt_Ribcage";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=80;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=0;b.h.Defence=50;b.h.UQ1txt="%_MASTERY";b.h.UQ1val=4;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=6;a.h.equip=b;M.addNewEquip("EquipmentShirts26",a);a=newl();b=newl();b.h.displayName="Void_Imperium|Platebody";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=90;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=13;b.h.AGI=13;b.h.WIS=13;b.h.LUK=0;b.h.Defence=55;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentShirts27",a);a=newl();b=newl();b.h.displayName="Member_Hoodie";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.lvReqToEquip=80;b.h.Class="BEGINNER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=25;b.h.Defence=40;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentShirts31",a);a=newl();b=newl();b.h.displayName="Damascus_Plates";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=95;b.h.Class="WARRIOR";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=17;b.h.AGI=0;b.h.WIS=5;b.h.LUK=0;b.h.Defence=60;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentShirts28",a);a=newl();b=newl();b.h.displayName="Evergreen_Wraps";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=95;b.h.Class="ARCHER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=4;b.h.AGI=19;b.h.WIS=0;b.h.LUK=0;b.h.Defence=53;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentShirts29",a);a=newl();b=newl();b.h.displayName="Elegantine_Robes";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=95;b.h.Class="MAGE";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=1;b.h.WIS=23;b.h.LUK=0;b.h.Defence=47;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentShirts30",a);a=newl();b=newl();b.h.displayName="Chizoar_Bodyplate";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=105;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=15;b.h.AGI=15;b.h.WIS=15;b.h.LUK=0;b.h.Defence=70;b.h.UQ1txt="%_MASTERY";b.h.UQ1val=7;b.h.UQ2txt="%_TOTAL_DAMAGE";b.h.UQ2val=3;b.h.Upgrade_Slots_Left=6;a.h.equip=b;M.addNewEquip("EquipmentShirts6",a);a=newl();b=newl();b.h.displayName="Lustre_Chestplate";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=110;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=16;b.h.AGI=16;b.h.WIS=16;b.h.LUK=16;b.h.Defence=80;b.h.UQ1txt="%_DEFENCE";b.h.UQ1val=6;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=6;a.h.equip=b;M.addNewEquip("EquipmentShirts32",a);a=newl();b=newl();b.h.displayName="Diabolical|Abdomen";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=130;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=20;b.h.AGI=20;b.h.WIS=20;b.h.LUK=20;b.h.Defence=90;b.h.UQ1txt="%_DEFENCE";b.h.UQ1val=11;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=7;a.h.equip=b;M.addNewEquip("EquipmentShirts33",a);a=newl();b=newl();b.h.displayName="Trollish_Garb";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=190;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=24;b.h.AGI=24;b.h.WIS=24;b.h.LUK=24;b.h.Defence=100;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=8;a.h.equip=b;M.addNewEquip("EquipmentShirts34",a);a=newl();b=newl();b.h.displayName="Magma_Core|Wavemaille";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=220;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=30;b.h.AGI=30;b.h.WIS=30;b.h.LUK=30;b.h.Defence=115;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=4;b.h.UQ2txt="%_TOTAL_DAMAGE";b.h.UQ2val=4;b.h.Upgrade_Slots_Left=8;a.h.equip=b;M.addNewEquip("EquipmentShirts35",a);a=newl();b=newl();b.h.displayName="Serrated_Chest|of_the_Divine";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=280;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=8;b.h.STR=40;b.h.AGI=40;b.h.WIS=40;b.h.LUK=40;b.h.Defence=135;b.h.UQ1txt="%_MOB_RESPAWN";b.h.UQ1val=8;b.h.UQ2txt="%_TOTAL_DAMAGE";b.h.UQ2val=6;b.h.Upgrade_Slots_Left=9;a.h.equip=b;M.addNewEquip("EquipmentShirts36",a);a=newl();b=newl();b.h.displayName="Marbiglass_Tunic";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=350;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=45;b.h.AGI=45;b.h.WIS=45;b.h.LUK=45;b.h.Defence=170;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=8;b.h.UQ2txt="%_MONEY";b.h.UQ2val=26;b.h.Upgrade_Slots_Left=9;a.h.equip=b;M.addNewEquip("EquipmentShirts37",a);a=newl();b=newl();b.h.displayName="Robe_of_the_Gods";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=500;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=15;b.h.STR=60;b.h.AGI=60;b.h.WIS=60;b.h.LUK=60;b.h.Defence=220;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=30;b.h.UQ2txt="%_MULTIKILL_PER_TIER";b.h.UQ2val=16;b.h.Upgrade_Slots_Left=10;a.h.equip=b;M.addNewEquip("EquipmentShirts38",a);a=newl();b=newl();b.h.displayName="Emperor|Sokutai_Ho";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=600;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=20;b.h.STR=75;b.h.AGI=75;b.h.WIS=75;b.h.LUK=75;b.h.Defence=300;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=40;b.h.UQ2txt="%_MULTIKILL_PER_TIER";b.h.UQ2val=25;b.h.Upgrade_Slots_Left=11;a.h.equip=b;M.addNewEquip("EquipmentShirts39",a);a=newl();b=newl();b.h.displayName="Prehistoric|Parka";b.h.sellPrice=200;b.h.typeGen="aShirt";b.h.ID=3;b.h.Type="SHIRT";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=650;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=25;b.h.STR=130;b.h.AGI=130;b.h.WIS=130;b.h.LUK=130;b.h.Defence=400;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=20;b.h.UQ2txt="%_CLASS_EXP_MULTI";b.h.UQ2val=25;b.h.Upgrade_Slots_Left=11;a.h.equip=b;M.addNewEquip("EquipmentShirts41",a);a=newl();b=newl();b.h.displayName="Torn_Jeans";b.h.sellPrice=650;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=2;b.h.WIS=1;b.h.LUK=0;b.h.Defence=4;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;M.addNewEquip("EquipmentPants1",a);a=newl();b=newl();b.h.displayName="Copper_Platelegs";b.h.sellPrice=3e3;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=8;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=2;b.h.WIS=2;b.h.LUK=0;b.h.Defence=6;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentPants2",a);a=newl();b=newl();b.h.displayName="Iron_Platelegs";b.h.sellPrice=6e3;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=0;b.h.Defence=11;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentPants3",a);a=newl();b=newl();b.h.displayName="Gold_Platelegs";b.h.sellPrice=15e3;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=35;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=4;b.h.AGI=4;b.h.WIS=4;b.h.LUK=0;b.h.Defence=16;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentPants4",a);a=newl();b=newl();b.h.displayName="Amarok_Hinds";b.h.sellPrice=200;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="25";a.h.common=b;b=newl();b.h.lvReqToEquip=40;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=2;b.h.WIS=2;b.h.LUK=0;b.h.Defence=18;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentPants17",a);a=newl();b=newl();b.h.displayName="Platinum_Shins";b.h.sellPrice=25e3;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=6;b.h.AGI=6;b.h.WIS=6;b.h.LUK=0;b.h.Defence=23;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentPants5",a);a=newl();b=newl();b.h.displayName="Dementia_Shins";b.h.sellPrice=200;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=70;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=7;b.h.AGI=7;b.h.WIS=7;b.h.LUK=0;b.h.Defence=28;b.h.UQ1txt="%_DEFENCE";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentPants6",a);a=newl();b=newl();b.h.displayName="Efaunt_Hipilium";b.h.sellPrice=200;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="25";a.h.common=b;b=newl();b.h.lvReqToEquip=75;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=4;b.h.AGI=4;b.h.WIS=4;b.h.LUK=0;b.h.Defence=32;b.h.UQ1txt="%_DEFENCE";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=6;a.h.equip=b;M.addNewEquip("EquipmentPants20",a);a=newl();b=newl();b.h.displayName="Void_Imperium|Shardshins";b.h.sellPrice=200;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=90;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=9;b.h.AGI=9;b.h.WIS=9;b.h.LUK=0;b.h.Defence=38;b.h.UQ1txt="%_DEFENCE";b.h.UQ1val=7;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentPants21",a);a=newl();b=newl();b.h.displayName="Gilded_Pilates";b.h.sellPrice=200;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="WARRIOR";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=3;b.h.AGI=3;b.h.WIS=0;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentPants7",a);a=newl();b=newl();b.h.displayName="Give_Up_On_Life|Pants";b.h.sellPrice=200;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=7;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=6;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentPants10",a);a=newl();b=newl();b.h.displayName="Yellow_Belt_Ninja|Pants";b.h.sellPrice=200;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=3;b.h.WIS=0;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentPants11",a);a=newl();b=newl();b.h.displayName="Merchantile_Pants";b.h.sellPrice=200;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=3;b.h.WIS=0;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentPants12",a);a=newl();b=newl();b.h.displayName="Ancient_Leggings";b.h.sellPrice=200;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=3;b.h.WIS=0;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentPants13",a);a=newl();b=newl();b.h.displayName="Forensic_Leggings";b.h.sellPrice=200;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=3;b.h.WIS=0;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentPants14",a);a=newl();b=newl();b.h.displayName="Bleached_Designer|Wode_Patch_Pants";b.h.sellPrice=3500;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="25";a.h.common=b;b=newl();b.h.lvReqToEquip=25;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=3;b.h.WIS=7;b.h.LUK=0;b.h.Defence=11;b.h.UQ1txt="%_CHOP_EFFICIENCY";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentPants15",a);a=newl();b=newl();b.h.displayName="Adam's_Leaf";b.h.sellPrice=200;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="25";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=4;b.h.AGI=0;b.h.WIS=13;b.h.LUK=0;b.h.Defence=2;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentPants16",a);a=newl();b=newl();b.h.displayName="Dirty_Coal_Miner|Baggy_Soot_Pants";b.h.sellPrice=200;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="25";a.h.common=b;b=newl();b.h.lvReqToEquip=25;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=7;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=12;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentPants18",a);a=newl();b=newl();b.h.displayName="Trimmed_Rune|Platelegs";b.h.sellPrice=200;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="25";a.h.common=b;b=newl();b.h.lvReqToEquip=82;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=4;b.h.AGI=2;b.h.WIS=0;b.h.LUK=0;b.h.Defence=20;b.h.UQ1txt="%_DEFENCE";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentPants19",a);a=newl();b=newl();b.h.displayName="Fishing_Overalls";b.h.sellPrice=200;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="25";a.h.common=b;b=newl();b.h.lvReqToEquip=35;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=8;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=15;b.h.UQ1txt="%_FISHIN_EFFICINCY";b.h.UQ1val=12;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentPants22",a);a=newl();b=newl();b.h.displayName="Bandito_Pantaloon";b.h.sellPrice=200;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="25";a.h.common=b;b=newl();b.h.lvReqToEquip=35;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=9;b.h.WIS=0;b.h.LUK=0;b.h.Defence=14;b.h.UQ1txt="%_CATCH_EFFICINCY";b.h.UQ1val=12;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentPants23",a);a=newl();b=newl();b.h.displayName="Chizoar_Scaled|Leggings";b.h.sellPrice=200;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=13;b.h.AGI=13;b.h.WIS=13;b.h.LUK=0;b.h.Defence=52;b.h.UQ1txt="%_MASTERY";b.h.UQ1val=7;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=6;a.h.equip=b;M.addNewEquip("EquipmentPants9",a);a=newl();b=newl();b.h.displayName="Lustre_Scales";b.h.sellPrice=200;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=110;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=14;b.h.AGI=14;b.h.WIS=14;b.h.LUK=14;b.h.Defence=54;b.h.UQ1txt="%_DEFENCE";b.h.UQ1val=9;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=6;a.h.equip=b;M.addNewEquip("EquipmentPants24",a);a=newl();b=newl();b.h.displayName="Diabolical_Trimed|Leg_Guards";b.h.sellPrice=200;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=130;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=18;b.h.AGI=18;b.h.WIS=18;b.h.LUK=18;b.h.Defence=65;b.h.UQ1txt="%_DEFENCE";b.h.UQ1val=13;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=7;a.h.equip=b;M.addNewEquip("EquipmentPants25",a);a=newl();b=newl();b.h.displayName="Twisted_Scales";b.h.sellPrice=200;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=180;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=25;b.h.AGI=25;b.h.WIS=25;b.h.LUK=25;b.h.Defence=70;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=8;a.h.equip=b;M.addNewEquip("EquipmentPants8",a);a=newl();b=newl();b.h.displayName="Magma_Core|Battleskirt";b.h.sellPrice=200;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=225;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=32;b.h.AGI=32;b.h.WIS=32;b.h.LUK=32;b.h.Defence=95;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=4;b.h.UQ2txt="%_TOTAL_DAMAGE";b.h.UQ2val=4;b.h.Upgrade_Slots_Left=8;a.h.equip=b;M.addNewEquip("EquipmentPants26",a);a=newl();b=newl();b.h.displayName="Spiked_Leggings|of_the_Divine";b.h.sellPrice=200;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=260;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=45;b.h.AGI=45;b.h.WIS=45;b.h.LUK=45;b.h.Defence=112;b.h.UQ1txt="%_MOB_RESPAWN";b.h.UQ1val=4;b.h.UQ2txt="%_TOTAL_DAMAGE";b.h.UQ2val=6;b.h.Upgrade_Slots_Left=9;a.h.equip=b;M.addNewEquip("EquipmentPants27",a);a=newl();b=newl();b.h.displayName="Marbiglass_Legplates";b.h.sellPrice=200;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=350;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=7;b.h.STR=50;b.h.AGI=50;b.h.WIS=50;b.h.LUK=50;b.h.Defence=140;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=7;b.h.UQ2txt="%_MONEY";b.h.UQ2val=22;b.h.Upgrade_Slots_Left=9;a.h.equip=b;M.addNewEquip("EquipmentPants29",a);a=newl();b=newl();b.h.displayName="Tatters_of_the_Gods";b.h.sellPrice=200;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=500;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=55;b.h.AGI=55;b.h.WIS=55;b.h.LUK=55;b.h.Defence=190;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=25;b.h.UQ2txt="%_MULTIKILL_PER_TIER";b.h.UQ2val=14;b.h.Upgrade_Slots_Left=10;a.h.equip=b;M.addNewEquip("EquipmentPants30",a);a=newl();b=newl();b.h.displayName="Emperor_Zubon";b.h.sellPrice=200;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=600;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=13;b.h.STR=65;b.h.AGI=65;b.h.WIS=65;b.h.LUK=65;b.h.Defence=250;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=35;b.h.UQ2txt="%_MULTIKILL_PER_TIER";b.h.UQ2val=20;b.h.Upgrade_Slots_Left=11;a.h.equip=b;M.addNewEquip("EquipmentPants31",a);a=newl();b=newl();b.h.displayName="Prehistoric|Pantaloons";b.h.sellPrice=200;b.h.typeGen="aPants";b.h.ID=3;b.h.Type="PANTS";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=650;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=20;b.h.STR=120;b.h.AGI=120;b.h.WIS=120;b.h.LUK=120;b.h.Defence=300;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=15;b.h.UQ2txt="%_CLASS_EXP_MULTI";b.h.UQ2val=20;b.h.Upgrade_Slots_Left=11;a.h.equip=b;M.addNewEquip("EquipmentPants32",a);a=newl();b=newl();b.h.displayName="Copper_Boots";b.h.sellPrice=1e3;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=8;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=2;b.h.Defence=2;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentShoes1",a);a=newl();b=newl();b.h.displayName="Flip_Flops";b.h.sellPrice=500;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=3;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MOVEMENT_SPEED";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;M.addNewEquip("EquipmentShoes9",a);a=newl();b=newl();b.h.displayName="Flap_Flops";b.h.sellPrice=200;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=10;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=3;b.h.WIS=0;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="%_MOVEMENT_SPEED";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentShoes10",a);a=newl();b=newl();b.h.displayName="Floop_Flops";b.h.sellPrice=200;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=25;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=3;b.h.WIS=0;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="%_MOVEMENT_SPEED";b.h.UQ1val=4;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentShoes11",a);a=newl();b=newl();b.h.displayName="Flux_Flops";b.h.sellPrice=200;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=5;b.h.AGI=3;b.h.WIS=0;b.h.LUK=8;b.h.Defence=40;b.h.UQ1txt="%_MOVEMENT_SPEED";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentShoes12",a);a=newl();b=newl();b.h.displayName="Iron_Boots";b.h.sellPrice=3e3;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=2;b.h.WIS=2;b.h.LUK=0;b.h.Defence=4;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentShoes15",a);a=newl();b=newl();b.h.displayName="Gold_Boots";b.h.sellPrice=1e4;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=3;b.h.Defence=8;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentShoes3",a);a=newl();b=newl();b.h.displayName="Amarok_Paws";b.h.sellPrice=3e3;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=35;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="%_DEFENCE";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentShoes20",a);a=newl();b=newl();b.h.displayName="Platinum_Boots";b.h.sellPrice=2e4;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=15;b.h.UQ1txt="%_DEFENCE";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentShoes4",a);a=newl();b=newl();b.h.displayName="Dementia_Boots";b.h.sellPrice=200;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=65;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=7;b.h.AGI=7;b.h.WIS=7;b.h.LUK=7;b.h.Defence=22;b.h.UQ1txt="%_DEFENCE";b.h.UQ1val=7;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentShoes5",a);a=newl();b=newl();b.h.displayName="Efaunts_Broken|Ankles";b.h.sellPrice=20;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=70;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=2;b.h.WIS=2;b.h.LUK=0;b.h.Defence=18;b.h.UQ1txt="%_MOVEMENT_SPEED";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=6;a.h.equip=b;M.addNewEquip("EquipmentShoes21",a);a=newl();b=newl();b.h.displayName="Void_Imperium|Kicks";b.h.sellPrice=200;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=85;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=9;b.h.AGI=9;b.h.WIS=9;b.h.LUK=9;b.h.Defence=30;b.h.UQ1txt="%_DEFENCE";b.h.UQ1val=8;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentShoes22",a);a=newl();b=newl();b.h.displayName="Hermes_Boots";b.h.sellPrice=200;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=3;b.h.AGI=3;b.h.WIS=0;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentShoes6",a);a=newl();b=newl();b.h.displayName="Goo_Galoshes";b.h.sellPrice=500;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=10;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=2;b.h.WIS=2;b.h.LUK=2;b.h.Defence=0;b.h.UQ1txt="%_MONEY";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentShoes7",a);a=newl();b=newl();b.h.displayName="Yeti_Walkers";b.h.sellPrice=200;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=3;b.h.AGI=3;b.h.WIS=0;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentShoes8",a);a=newl();b=newl();b.h.displayName="Gaia_Shoes";b.h.sellPrice=200;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=6;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentShoes13",a);a=newl();b=newl();b.h.displayName="Cauldrunners";b.h.sellPrice=200;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=12;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="%_ALCHEMY_EXP";b.h.UQ1val=30;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentShoes14",a);a=newl();b=newl();b.h.displayName="Cavern_Trekkers";b.h.sellPrice=3e3;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=5;b.h.AGI=0;b.h.WIS=1;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentShoes16",a);a=newl();b=newl();b.h.displayName="Logger_Heels";b.h.sellPrice=3e3;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=7;b.h.LUK=0;b.h.Defence=6;b.h.UQ1txt="%_CHOP_EFFICIENCY";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentShoes17",a);a=newl();b=newl();b.h.displayName="Angler_Boots";b.h.sellPrice=3e3;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=6;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=8;b.h.UQ1txt="%_FISHIN_EFFICINCY";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentShoes18",a);a=newl();b=newl();b.h.displayName="Bandito_Boots";b.h.sellPrice=3e3;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=6;b.h.WIS=0;b.h.LUK=0;b.h.Defence=8;b.h.UQ1txt="%_CATCH_EFFICINCY";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentShoes19",a);a=newl();b=newl();b.h.displayName="Eyern_Boots";b.h.sellPrice=20;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="%_NOVELTY";b.h.UQ1val=100;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentShoes2",a);a=newl();b=newl();b.h.displayName="Chizoar|Walkers";b.h.sellPrice=200;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=95;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=12;b.h.AGI=12;b.h.WIS=12;b.h.LUK=12;b.h.Defence=48;b.h.UQ1txt="%_MASTERY";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentShoes23",a);a=newl();b=newl();b.h.displayName="Rough_Rockers";b.h.sellPrice=3e3;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=110;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=13;b.h.AGI=0;b.h.WIS=1;b.h.LUK=0;b.h.Defence=32;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=35;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentShoes26",a);a=newl();b=newl();b.h.displayName="Fiberous_Footings";b.h.sellPrice=3e3;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=110;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=14;b.h.LUK=0;b.h.Defence=25;b.h.UQ1txt="%_CHOP_EFFICIENCY";b.h.UQ1val=35;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentShoes27",a);a=newl();b=newl();b.h.displayName="Deep_Sea_Galoshes";b.h.sellPrice=3e3;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=110;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=12;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=29;b.h.UQ1txt="%_FISHIN_EFFICINCY";b.h.UQ1val=35;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentShoes28",a);a=newl();b=newl();b.h.displayName="Spaggy_Westerados";b.h.sellPrice=3e3;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=110;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=13;b.h.WIS=0;b.h.LUK=0;b.h.Defence=29;b.h.UQ1txt="%_CATCH_EFFICINCY";b.h.UQ1val=35;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentShoes29",a);a=newl();b=newl();b.h.displayName="Cooking_Clogs";b.h.sellPrice=3e3;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=40;b.h.UQ1txt="_COOKING_EFFICNCY";b.h.UQ1val=300;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentShoes30",a);a=newl();b=newl();b.h.displayName="Chef_Hat|Shoes";b.h.sellPrice=3e3;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=125;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=45;b.h.UQ1txt="_COOKING_EFFICNCY";b.h.UQ1val=800;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentShoes31",a);a=newl();b=newl();b.h.displayName="Laboratory_Scrubs";b.h.sellPrice=3e3;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=20;b.h.Defence=0;b.h.UQ1txt="_LAB_EFFICIENCY";b.h.UQ1val=300;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentShoes32",a);a=newl();b=newl();b.h.displayName="Sheek_Scrubs";b.h.sellPrice=3e3;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=125;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=30;b.h.Defence=0;b.h.UQ1txt="_LAB_EFFICIENCY";b.h.UQ1val=700;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentShoes33",a);a=newl();b=newl();b.h.displayName="Divvy_Slippers";b.h.sellPrice=3e3;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=200;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=5;b.h.WIS=12;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DIVINITY_EXP";b.h.UQ1val=42;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentShoes39",a);a=newl();b=newl();b.h.displayName="Lustre_Shieldshoe";b.h.sellPrice=200;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=110;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=13;b.h.AGI=13;b.h.WIS=13;b.h.LUK=13;b.h.Defence=50;b.h.UQ1txt="%_DEFENCE";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentShoes24",a);a=newl();b=newl();b.h.displayName="Diabolical_Toe|Tips";b.h.sellPrice=200;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=130;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=17;b.h.AGI=17;b.h.WIS=17;b.h.LUK=17;b.h.Defence=60;b.h.UQ1txt="%_DEFENCE";b.h.UQ1val=13;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=6;a.h.equip=b;M.addNewEquip("EquipmentShoes25",a);a=newl();b=newl();b.h.displayName="Soles_of|the_Troll";b.h.sellPrice=200;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=185;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=22;b.h.AGI=22;b.h.WIS=22;b.h.LUK=22;b.h.Defence=65;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=7;a.h.equip=b;M.addNewEquip("EquipmentShoes34",a);a=newl();b=newl();b.h.displayName="Magma_Core|Lavarunners";b.h.sellPrice=200;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=230;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=28;b.h.AGI=28;b.h.WIS=28;b.h.LUK=28;b.h.Defence=90;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=4;b.h.UQ2txt="%_TOTAL_DAMAGE";b.h.UQ2val=4;b.h.Upgrade_Slots_Left=7;a.h.equip=b;M.addNewEquip("EquipmentShoes35",a);a=newl();b=newl();b.h.displayName="Devious_Slippers|of_the_Divine";b.h.sellPrice=200;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=240;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=38;b.h.AGI=38;b.h.WIS=38;b.h.LUK=38;b.h.Defence=100;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=15;b.h.UQ2txt="%_TOTAL_DAMAGE";b.h.UQ2val=8;b.h.Upgrade_Slots_Left=8;a.h.equip=b;M.addNewEquip("EquipmentShoes36",a);a=newl();b=newl();b.h.displayName="Marbiglass_Soles";b.h.sellPrice=200;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=350;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=43;b.h.AGI=43;b.h.WIS=43;b.h.LUK=43;b.h.Defence=110;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=7;b.h.UQ2txt="%_MONEY";b.h.UQ2val=25;b.h.Upgrade_Slots_Left=8;a.h.equip=b;M.addNewEquip("EquipmentShoes37",a);a=newl();b=newl();b.h.displayName="Drip_of_the_Gods";b.h.sellPrice=200;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=500;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=57;b.h.AGI=57;b.h.WIS=57;b.h.LUK=57;b.h.Defence=120;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=30;b.h.UQ2txt="%_MULTIKILL_PER_TIER";b.h.UQ2val=12;b.h.Upgrade_Slots_Left=9;a.h.equip=b;M.addNewEquip("EquipmentShoes38",a);a=newl();b=newl();b.h.displayName="Emperor_Geta";b.h.sellPrice=200;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=600;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=70;b.h.AGI=70;b.h.WIS=70;b.h.LUK=70;b.h.Defence=150;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=40;b.h.UQ2txt="%_MULTIKILL_PER_TIER";b.h.UQ2val=20;b.h.Upgrade_Slots_Left=10;a.h.equip=b;M.addNewEquip("EquipmentShoes40",a);a=newl();b=newl();b.h.displayName="Prehistoric|Bracers";b.h.sellPrice=200;b.h.typeGen="aShoes";b.h.ID=3;b.h.Type="SHOES";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=650;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=100;b.h.AGI=100;b.h.WIS=100;b.h.LUK=100;b.h.Defence=250;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=10;b.h.UQ2txt="%_CLASS_EXP_MULTI";b.h.UQ2val=15;b.h.Upgrade_Slots_Left=10;a.h.equip=b;M.addNewEquip("EquipmentShoes41",a);a=newl();b=newl();b.h.displayName="Mint_Icey";b.h.sellPrice=420;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="999";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentPendant1",a);a=newl();b=newl();b.h.displayName="Strawbu_Icey";b.h.sellPrice=420;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="999";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentPendant2",a);a=newl();b=newl();b.h.displayName="Rok_Road_Icey";b.h.sellPrice=420;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="999";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=2;b.h.AGI=2;b.h.WIS=2;b.h.LUK=2;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;M.addNewEquip("EquipmentPendant3",a);a=newl();b=newl();b.h.displayName="Rainbo_Icey";b.h.sellPrice=420;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="999";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=2;b.h.AGI=2;b.h.WIS=2;b.h.LUK=2;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=4;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;M.addNewEquip("EquipmentPendant4",a);a=newl();b=newl();b.h.displayName="Chocotastic_Icey";b.h.sellPrice=420;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="999";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=7;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;M.addNewEquip("EquipmentPendant5",a);a=newl();b=newl();b.h.displayName="Blubbery_Icecream";b.h.sellPrice=420;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="999";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_AFK_GAINS_MULTI";b.h.UQ1val=8;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;M.addNewEquip("EquipmentPendant6",a);a=newl();b=newl();b.h.displayName="Lava_Icey";b.h.sellPrice=420;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="999";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=12;b.h.STR=4;b.h.AGI=4;b.h.WIS=4;b.h.LUK=4;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=8;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentPendant7",a);a=newl();b=newl();b.h.displayName="Legends_Icey";b.h.sellPrice=27;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="999";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=15;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentPendant8",a);a=newl();b=newl();b.h.displayName="Little_Wooden|Katana";b.h.sellPrice=200;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="8";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=1;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;M.addNewEquip("EquipmentPendant9",a);a=newl();b=newl();b.h.displayName="Sleek_Shank";b.h.sellPrice=400;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=4;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentPendant10",a);a=newl();b=newl();b.h.displayName="Carrot_Horror";b.h.sellPrice=500;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=14;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=2;b.h.WIS=5;b.h.LUK=2;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentPendant11",a);a=newl();b=newl();b.h.displayName="Tarantulight";b.h.sellPrice=6500;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=20;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=2;b.h.WIS=2;b.h.LUK=5;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentPendant12",a);a=newl();b=newl();b.h.displayName="Quartz_Pendant";b.h.sellPrice=6500;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=20;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=2;b.h.WIS=2;b.h.LUK=5;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentPendant13",a);a=newl();b=newl();b.h.displayName="Fuscismatia";b.h.sellPrice=1e4;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=70;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=10;b.h.LUK=0;b.h.Defence=5;b.h.UQ1txt="_PURPLE_DEPTH";b.h.UQ1val=30;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentPendant14",a);a=newl();b=newl();b.h.displayName="Lucky_Fish_Head";b.h.sellPrice=6500;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=20;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=2;b.h.WIS=2;b.h.LUK=5;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentPendant15",a);a=newl();b=newl();b.h.displayName="Strung_Bludgeon";b.h.sellPrice=1e4;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=20;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentPendant16",a);a=newl();b=newl();b.h.displayName="Chaotic_Amarok|Pendant";b.h.sellPrice=1e4;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=12;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=20;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentPendant17",a);a=newl();b=newl();b.h.displayName="Strung_Steamy";b.h.sellPrice=1;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentPendant18",a);a=newl();b=newl();b.h.displayName="Cedar_Pendant";b.h.sellPrice=1;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=20;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="_ACCURACY";b.h.UQ1val=13;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;M.addNewEquip("EquipmentPendant19",a);a=newl();b=newl();b.h.displayName="Fishhead_Pendant";b.h.sellPrice=1;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=40;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_FISHING_XP_GAIN";b.h.UQ1val=15;b.h.UQ2txt="_PURPLE_DEPTH";b.h.UQ2val=15;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentPendant20",a);a=newl();b=newl();b.h.displayName="Deathly_Cluster|Pendant";b.h.sellPrice=1;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=80;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MOB_RESPAWN";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentPendant21",a);a=newl();b=newl();b.h.displayName="Hallowed_Tail|Pendant";b.h.sellPrice=1;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=110;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="%_MULTIKILL";b.h.UQ1val=30;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentPendant22",a);a=newl();b=newl();b.h.displayName="Persephones|Bouquet";b.h.sellPrice=1;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=140;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="%_SKILL_AFK_GAIN";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentPendant23",a);a=newl();b=newl();b.h.displayName="Chizoars_Blankie";b.h.sellPrice=1;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=27;b.h.UQ2txt="%_MOB_RESPAWN";b.h.UQ2val=3;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentPendant24",a);a=newl();b=newl();b.h.displayName="Chizoars_Caustic|Scarf";b.h.sellPrice=1;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=120;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=8;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=40;b.h.UQ2txt="%_MOB_RESPAWN";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentPendant25",a);a=newl();b=newl();b.h.displayName="Polished_Bludgeon";b.h.sellPrice=1e4;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=40;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=6;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=5;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentPendant26",a);a=newl();b=newl();b.h.displayName="Skullfish_Pendant";b.h.sellPrice=1;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=60;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=10;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_FISH_AFK_GAIN";b.h.UQ1val=5;b.h.UQ2txt="_PURPLE_DEPTH";b.h.UQ2val=40;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentPendant27",a);a=newl();b=newl();b.h.displayName="Crescent_Moon|Pendant";b.h.sellPrice=1;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=10;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=42;b.h.UQ2txt="%_MOB_RESPAWN";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentPendant28",a);a=newl();b=newl();b.h.displayName="Strung_Tooth|of_the_Divine";b.h.sellPrice=1;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=250;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=8;b.h.STR=6;b.h.AGI=6;b.h.WIS=6;b.h.LUK=6;b.h.Defence=30;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=20;b.h.UQ2txt="%_ALL_STATS";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=5;a.h.equip=b;M.addNewEquip("EquipmentPendant29",a);a=newl();b=newl();b.h.displayName="The_Divine|Scarf";b.h.sellPrice=1;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=425;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=15;b.h.STR=35;b.h.AGI=35;b.h.WIS=35;b.h.LUK=35;b.h.Defence=35;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=25;b.h.UQ2txt="%_MOB_RESPAWN";b.h.UQ2val=20;b.h.Upgrade_Slots_Left=11;a.h.equip=b;M.addNewEquip("EquipmentPendant30",a);a=newl();b=newl();b.h.displayName="Deathbloom_Flower|Pendant";b.h.sellPrice=1;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=30;b.h.UQ2txt="%_MOB_RESPAWN";b.h.UQ2val=20;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentPendant31",a);a=newl();b=newl();b.h.displayName="Slimy_Necklace";b.h.sellPrice=1;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=5;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=2;b.h.AGI=2;b.h.WIS=2;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentPendant32",a);a=newl();b=newl();b.h.displayName="Emerald_Bling|Pendant";b.h.sellPrice=1;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=0;b.h.UQ1txt="%_BONUS_MONEY";b.h.UQ1val=200;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentPendant33",a);a=newl();b=newl();b.h.displayName="Charred_Pendant";b.h.sellPrice=1;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=25;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=5;b.h.UQ1txt="%_MONEY";b.h.UQ1val=25;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;M.addNewEquip("EquipmentPendant34",a);a=newl();b=newl();b.h.displayName="Bramble_of_the|Emperor";b.h.sellPrice=1;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=500;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=35;b.h.AGI=35;b.h.WIS=35;b.h.LUK=35;b.h.Defence=0;b.h.UQ1txt="%_SKILL_AFK_GAIN";b.h.UQ1val=50;b.h.UQ2txt="%_SKILL_EFFICIENCY";b.h.UQ2val=25;b.h.Upgrade_Slots_Left=7;a.h.equip=b;M.addNewEquip("EquipmentPendant35",a);a=newl();b=newl();b.h.displayName="Butterfly_Pendant";b.h.sellPrice=1;b.h.typeGen="aPendant";b.h.ID=3;b.h.Type="PENDANT";b.h.lvReqToCraft="17";a.h.common=b;b=newl();b.h.lvReqToEquip=60;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=10;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CATCH_AFK_GAIN";b.h.UQ1val=5;b.h.UQ2txt="%_CATCH_EFFICINCY";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentPendant36",a);a=newl();b=newl();b.h.displayName="Gold_Ring";b.h.sellPrice=200;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=3;b.h.AGI=3;b.h.WIS=0;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentRings1",a);a=newl();b=newl();b.h.displayName="Copper_Band";b.h.sellPrice=200;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentRings2",a);a=newl();b=newl();b.h.displayName="Steel_Band";b.h.sellPrice=200;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=4;b.h.Defence=1;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentRings3",a);a=newl();b=newl();b.h.displayName="Molden_Crust";b.h.sellPrice=200;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=3;b.h.AGI=3;b.h.WIS=0;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentRings4",a);a=newl();b=newl();b.h.displayName="Toxic_Bubbles|Band";b.h.sellPrice=200;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=3;b.h.AGI=3;b.h.WIS=0;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentRings5",a);a=newl();b=newl();b.h.displayName="Death_Wish";b.h.sellPrice=200;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=55;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=6;b.h.UQ1txt="%_BOSS_DAMAGE";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentRings6",a);a=newl();b=newl();b.h.displayName="Pugilist_Demise";b.h.sellPrice=4e3;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=9;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_BOSS_DAMAGE";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentRings7",a);a=newl();b=newl();b.h.displayName="The_Used_Bandaid";b.h.sellPrice=2500;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=9;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=6;b.h.AGI=4;b.h.WIS=0;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_BOSS_DAMAGE";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentRings8",a);a=newl();b=newl();b.h.displayName="Chat_Ring";b.h.sellPrice=2500;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=12;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=6;b.h.AGI=2;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_BOSS_DAMAGE";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentRings9",a);a=newl();b=newl();b.h.displayName="Spikeweed_Ring";b.h.sellPrice=2500;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=9;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=6;b.h.AGI=2;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentRings10",a);a=newl();b=newl();b.h.displayName="Defenders_Dignity";b.h.sellPrice=5e3;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=40;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=12;b.h.UQ1txt="%_DEFENCE";b.h.UQ1val=4;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentRings11",a);a=newl();b=newl();b.h.displayName="Shallow_Watering";b.h.sellPrice=2500;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=9;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=6;b.h.AGI=2;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="_YELLOW_DEPTH";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentRingsFishing1",a);a=newl();b=newl();b.h.displayName="Oceanic_Ring";b.h.sellPrice=2500;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=9;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=8;b.h.STR=9;b.h.AGI=3;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="_RED_DEPTH";b.h.UQ1val=30;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentRingsFishing2",a);a=newl();b=newl();b.h.displayName="Deepwater_Trench|Ring";b.h.sellPrice=2500;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=9;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=14;b.h.STR=12;b.h.AGI=4;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="_PURPLE_DEPTH";b.h.UQ1val=40;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentRingsFishing3",a);a=newl();b=newl();b.h.displayName="Frisbee_Ring";b.h.sellPrice=5e3;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=45;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=12;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="_ACCURACY";b.h.UQ1val=35;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentRings12",a);a=newl();b=newl();b.h.displayName="Silver_Stopwatch";b.h.sellPrice=5e3;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=17;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_FIGHT_AFK_GAIN";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentRings13",a);a=newl();b=newl();b.h.displayName="Dooble_Goopi";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=1;b.h.Defence=2;b.h.UQ1txt="%_MONEY";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentRings14",a);a=newl();b=newl();b.h.displayName="Sanic_Ring";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=60;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=8;b.h.WIS=0;b.h.LUK=4;b.h.Defence=5;b.h.UQ1txt="%_MOVEMENT_SPEED";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentRings15",a);a=newl();b=newl();b.h.displayName="Efaunt_Trunculus";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=80;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=0;b.h.AGI=10;b.h.WIS=0;b.h.LUK=0;b.h.Defence=8;b.h.UQ1txt="%_CRIT_CHANCE";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentRings16",a);a=newl();b=newl();b.h.displayName="Elf_Twist_Ring";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=7;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentRings21",a);a=newl();b=newl();b.h.displayName="Rex_Ring";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=40;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=2;b.h.WIS=2;b.h.LUK=0;b.h.Defence=2;b.h.UQ1txt="%_SKILL_EFFICIENCY";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentRings20",a);a=newl();b=newl();b.h.displayName="Bejeweled_Ring";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=70;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=7;b.h.Defence=4;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentRings19",a);a=newl();b=newl();b.h.displayName="Tenacity_Ring";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=120;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=6;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=6;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentRings22",a);a=newl();b=newl();b.h.displayName="The_Emperor's_Opal";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=150;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=8;b.h.STR=30;b.h.AGI=30;b.h.WIS=30;b.h.LUK=30;b.h.Defence=8;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=6;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentRings18",a);a=newl();b=newl();b.h.displayName="Neutron_Ice_Ring";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=95;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=11;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=4;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentRings23",a);a=newl();b=newl();b.h.displayName="Lab_Ring";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="_LAB_EFFICIENCY";b.h.UQ1val=350;b.h.UQ2txt="%_LAB_EFFICIENCY";b.h.UQ2val=15;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentRings24",a);a=newl();b=newl();b.h.displayName="Chef_Ring";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="_COOKING_EFFICNCY";b.h.UQ1val=400;b.h.UQ2txt="%_COOKING_EFFICNCY";b.h.UQ2val=15;b.h.Upgrade_Slots_Left=2;a.h.equip=b;M.addNewEquip("EquipmentRings25",a);a=newl();b=newl();b.h.displayName="Serrated_Rex|Ring";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=0;b.h.Defence=5;b.h.UQ1txt="%_SKILL_EFFICIENCY";b.h.UQ1val=8;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentRings26",a);a=newl();b=newl();b.h.displayName="Protectors_Pride";b.h.sellPrice=5e3;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=70;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=3;b.h.Defence=20;b.h.UQ1txt="%_DEFENCE";b.h.UQ1val=6;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentRings27",a);a=newl();b=newl();b.h.displayName="Midnight|Stopwatch";b.h.sellPrice=5e3;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=90;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="%_FIGHT_AFK_GAIN";b.h.UQ1val=2;b.h.UQ2txt="%_BASIC_ATK_SPEED";b.h.UQ2val=3;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentRings28",a);a=newl();b=newl();b.h.displayName="Dawn_Stopwatch";b.h.sellPrice=5e3;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=90;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="%_SKILL_AFK_GAIN";b.h.UQ1val=2;b.h.UQ2txt="%_SKILL_EFFICIENCY";b.h.UQ2val=1;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentRings29",a);a=newl();b=newl();b.h.displayName="Souped_Lab_Ring";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=110;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="%_LAB_EXP";b.h.UQ1val=25;b.h.UQ2txt="%_LAB_EFFICIENCY";b.h.UQ2val=35;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentRings30",a);a=newl();b=newl();b.h.displayName="Tundra_Killer|Ring";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="%_KILLS_IN_WORLD_3";b.h.UQ1val=30;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentRings31",a);a=newl();b=newl();b.h.displayName="Nebula_Killer|Ring";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=4;b.h.UQ1txt="%_KILLS_IN_WORLD_4";b.h.UQ1val=30;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentRings32",a);a=newl();b=newl();b.h.displayName="Dune_Killer|Ring";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="%_KILLS_IN_WORLD_2";b.h.UQ1val=30;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentRings33",a);a=newl();b=newl();b.h.displayName="Magma_Killer|Ring";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=5;b.h.UQ1txt="%_KILLS_IN_WORLD_5";b.h.UQ1val=30;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentRings34",a);a=newl();b=newl();b.h.displayName="Zero_Point|Stopwatch";b.h.sellPrice=5e3;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=250;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=5;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=4;b.h.UQ2txt="%_SKILL_EFFICIENCY";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=4;a.h.equip=b;M.addNewEquip("EquipmentRings35",a);a=newl();b=newl();b.h.displayName="Demented_Emperor|Opal";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=500;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=12;b.h.STR=50;b.h.AGI=50;b.h.WIS=50;b.h.LUK=50;b.h.Defence=15;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=10;b.h.UQ2txt="%_DAMAGE_MULTI";b.h.UQ2val=1;b.h.Upgrade_Slots_Left=1;a.h.equip=b;M.addNewEquip("EquipmentRings36",a);a=newl();b=newl();b.h.displayName="Spirit_Killer|Ring";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=6;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=6;b.h.UQ1txt="%_KILLS_IN_WORLD_6";b.h.UQ1val=30;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentRings37",a);a=newl();b=newl();b.h.displayName="Starstrut_Ring";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=3;b.h.Type="RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=7;b.h.Defence=4;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=7;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;M.addNewEquip("EquipmentRings38",a);a=newl();b=newl();b.h.displayName="Love_Ring";b.h.sellPrice=2500;b.h.typeGen="aChatRingMTX";b.h.ID=1;b.h.Type="CHAT_RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_LOVE";b.h.UQ1val=69;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentRingsChat1",a);a=newl();b=newl();b.h.displayName="Leafy_Ring";b.h.sellPrice=2500;b.h.typeGen="aChatRingMTX";b.h.ID=2;b.h.Type="CHAT_RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_ALL_NATURAL";b.h.UQ1val=100;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentRingsChat2",a);a=newl();b=newl();b.h.displayName="Wealth_Ring";b.h.sellPrice=2500;b.h.typeGen="aChatRingMTX";b.h.ID=3;b.h.Type="CHAT_RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="%_COOLNESS";b.h.UQ1val=777;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentRingsChat3",a);a=newl();b=newl();b.h.displayName="Bob_Ring";b.h.sellPrice=2500;b.h.typeGen="aChatRingMTX";b.h.ID=4;b.h.Type="CHAT_RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_BOB";b.h.UQ1val=808;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentRingsChat4",a);a=newl();b=newl();b.h.displayName="Bubble_Ring";b.h.sellPrice=2500;b.h.typeGen="aChatRingMTX";b.h.ID=5;b.h.Type="CHAT_RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_POP_CHANCE";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentRingsChat5",a);a=newl();b=newl();b.h.displayName="Cthulu's_Ring";b.h.sellPrice=2500;b.h.typeGen="aChatRingMTX";b.h.ID=6;b.h.Type="CHAT_RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_PURE_EVIL";b.h.UQ1val=666;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentRingsChat6",a);a=newl();b=newl();b.h.displayName="Lava_Sez|Buy_More_Gems";b.h.sellPrice=2500;b.h.typeGen="aChatRingMTX";b.h.ID=7;b.h.Type="CHAT_RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_SELF_ESTEEM";b.h.UQ1val=-1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentRingsChat8",a);a=newl();b=newl();b.h.displayName="HONK_Ring";b.h.sellPrice=2500;b.h.typeGen="aChatRingMTX";b.h.ID=8;b.h.Type="CHAT_RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_HONK";b.h.UQ1val=100;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentRingsChat9",a);a=newl();b=newl();b.h.displayName="Meteorite_Ring";b.h.sellPrice=2500;b.h.typeGen="aChatRingMTX";b.h.ID=9;b.h.Type="CHAT_RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="%_CHEESE";b.h.UQ1val=100;b.h.UQ2txt="%_GRAVITY";b.h.UQ2val=17;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentRingsChat10",a);a=newl();b=newl();b.h.displayName="Equinox_Ring";b.h.sellPrice=2500;b.h.typeGen="aChatRingMTX";b.h.ID=10;b.h.Type="CHAT_RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=20;b.h.AGI=20;b.h.WIS=20;b.h.LUK=20;b.h.Defence=10;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;M.addNewEquip("EquipmentRingsChat11",a);a=newl();b=newl();b.h.displayName="Tournament_Ring";b.h.sellPrice=2500;b.h.typeGen="aChatRingMTX";b.h.ID=11;b.h.Type="CHAT_RING";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentRingsChat12",a);a=newl();b=newl();b.h.displayName="Angel_Wings";b.h.sellPrice=1;b.h.typeGen="aCape";b.h.ID=1;b.h.Type="CAPE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=5;b.h.Defence=10;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=11;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentCape0",a);a=newl();b=newl();b.h.displayName="Lava_Wings";b.h.sellPrice=1;b.h.typeGen="aCape";b.h.ID=2;b.h.Type="CAPE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=50;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=11;b.h.UQ1txt="%_AWESOME";b.h.UQ1val=100;b.h.UQ2txt="%_EPIC";b.h.UQ2val=100;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentCape1",a);a=newl();b=newl();b.h.displayName="Easter_Egg|Backpack";b.h.sellPrice=1;b.h.typeGen="aCape";b.h.ID=3;b.h.Type="CAPE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentCape2",a);a=newl();b=newl();b.h.displayName="Radiant_Amarok|Backstabber";b.h.sellPrice=1;b.h.typeGen="aCape";b.h.ID=4;b.h.Type="CAPE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=50;b.h.UQ1txt="%_DEFENCE";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentCape3",a);a=newl();b=newl();b.h.displayName="Gilded_Efaunt|Dislodged_Tusks";b.h.sellPrice=1;b.h.typeGen="aCape";b.h.ID=5;b.h.Type="CAPE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=15;b.h.AGI=15;b.h.WIS=15;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_SKILL_EFFICIENCY";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentCape4",a);a=newl();b=newl();b.h.displayName="Blighted_Chizoar|Shard_Cape";b.h.sellPrice=1;b.h.typeGen="aCape";b.h.ID=6;b.h.Type="CAPE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=8;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentCape5",a);a=newl();b=newl();b.h.displayName="Cascading_Scaled|Cape_of_Krieg";b.h.sellPrice=1;b.h.typeGen="aCape";b.h.ID=7;b.h.Type="CAPE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=0;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=6;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentCape6",a);a=newl();b=newl();b.h.displayName="Molten_Cloak";b.h.sellPrice=1;b.h.typeGen="aCape";b.h.ID=8;b.h.Type="CAPE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=6;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=5;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=30;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentCape7",a);a=newl();b=newl();b.h.displayName="Giant_Rose";b.h.sellPrice=1;b.h.typeGen="aCape";b.h.ID=9;b.h.Type="CAPE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=7;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentCape8",a);a=newl();b=newl();b.h.displayName="Giant_Violet";b.h.sellPrice=1;b.h.typeGen="aCape";b.h.ID=10;b.h.Type="CAPE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentCape9",a);a=newl();b=newl();b.h.displayName="Giant_Starflower";b.h.sellPrice=1;b.h.typeGen="aCape";b.h.ID=11;b.h.Type="CAPE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=6;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=13;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentCape10",a);a=newl();b=newl();b.h.displayName="Riftwalker_Wings";b.h.sellPrice=1;b.h.typeGen="aCape";b.h.ID=12;b.h.Type="CAPE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=25;b.h.STR=30;b.h.AGI=30;b.h.WIS=30;b.h.LUK=30;b.h.Defence=60;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=20;b.h.UQ2txt="%_ALL_AFK_GAIN";b.h.UQ2val=4;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentCape11",a);a=newl();b=newl();b.h.displayName="Blooming_Vine";b.h.sellPrice=1;b.h.typeGen="aCape";b.h.ID=13;b.h.Type="CAPE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=15;b.h.STR=12;b.h.AGI=12;b.h.WIS=12;b.h.LUK=12;b.h.Defence=30;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=50;b.h.UQ2txt="%_SKILL_EXP";b.h.UQ2val=50;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentCape12",a);a=newl();b=newl();b.h.displayName="Eternal_Flames_of|The_Divine";b.h.sellPrice=1;b.h.typeGen="aCape";b.h.ID=14;b.h.Type="CAPE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=11;b.h.AGI=11;b.h.WIS=11;b.h.LUK=11;b.h.Defence=25;b.h.UQ1txt="%_SKILL_EXP";b.h.UQ1val=40;b.h.UQ2txt="%_ALL_AFK_GAIN";b.h.UQ2val=3;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentCape13",a);a=newl();b=newl();b.h.displayName="Phoenix_Wings";b.h.sellPrice=1;b.h.typeGen="aCape";b.h.ID=15;b.h.Type="CAPE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=30;b.h.STR=40;b.h.AGI=40;b.h.WIS=40;b.h.LUK=40;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=50;b.h.UQ2txt="%_MONEY";b.h.UQ2val=60;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentCape14",a);a=newl();b=newl();b.h.displayName="Giant_Nightshade";b.h.sellPrice=1;b.h.typeGen="aCape";b.h.ID=16;b.h.Type="CAPE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=2;b.h.AGI=2;b.h.WIS=2;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentCape15",a);a=newl();b=newl();b.h.displayName="Timeless|Watch";b.h.sellPrice=1;b.h.typeGen="aCape";b.h.ID=17;b.h.Type="CAPE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=20;b.h.STR=50;b.h.AGI=50;b.h.WIS=50;b.h.LUK=50;b.h.Defence=0;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=40;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentCape16",a);a=newl();b=newl();b.h.displayName="Gilded_Emperor|Wings";b.h.sellPrice=1;b.h.typeGen="aCape";b.h.ID=18;b.h.Type="CAPE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=8;b.h.STR=15;b.h.AGI=15;b.h.WIS=15;b.h.LUK=15;b.h.Defence=0;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=25;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentCape17",a);a=newl();b=newl();b.h.displayName="Chains_of_the|Gilded_Vaultguard";b.h.sellPrice=1;b.h.typeGen="aCape";b.h.ID=19;b.h.Type="CAPE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=30;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=30;b.h.Defence=25;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=100;b.h.UQ2txt="%_DROP_RATE_MULTI";b.h.UQ2val=40;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentCape18",a);a=newl();b=newl();b.h.displayName="Dragonroll|Mantlepiece";b.h.sellPrice=1;b.h.typeGen="aCape";b.h.ID=20;b.h.Type="CAPE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=30;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=50;b.h.Defence=10;b.h.UQ1txt="%_MORE_KILLS";b.h.UQ1val=100;b.h.UQ2txt="%_BIGGER_DAMAGE";b.h.UQ2val=100;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentCape19",a);a=newl();b=newl();b.h.displayName="Beeg_Egg";b.h.sellPrice=1;b.h.typeGen="aCape";b.h.ID=21;b.h.Type="CAPE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=30;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_BIGGER_DAMAGE";b.h.UQ1val=300;b.h.UQ2txt="%_AFK_GAINS_MULTI";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=0;a.h.equip=b;M.addNewEquip("EquipmentCape20",a);""" # fmt: skip # noqa -# `scripts.ItemDefinitions2` in source. Last updated in v2.502 +# `scripts.ItemDefinitions2` in source. Last updated in v2.505 # paste body of the `make` function (excluding outer curly braces) # remove all spaces and newlines script_item_definitions_2 = """O.itemDefs=newl();vara=newl(),b=newl();b.h.displayName="Sword_Stamp";b.h.sellPrice=500;b.h.typeGen="aStamp";b.h.ID=0;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseDmg,add,1,0,5,Grasslands1,3,5,10,1.2,0,{}_Base_Damage,3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA1",a);a=newl();b=newl();b.h.displayName="Heart_Stamp";b.h.sellPrice=500;b.h.typeGen="aStamp";b.h.ID=1;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseHP,add,1,0,5,OakTree,5,6,15,1.2,0,{}_Base_HP,3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA2",a);a=newl();b=newl();b.h.displayName="Mana_Stamp";b.h.sellPrice=1500;b.h.typeGen="aStamp";b.h.ID=2;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseMP,add,1,0,5,Copper,6,6,30,1.2,0,{}_Base_MP,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA3",a);a=newl();b=newl();b.h.displayName="Tomahawk_Stamp";b.h.sellPrice=1e3;b.h.typeGen="aStamp";b.h.ID=3;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="PctDmg,decay,6,40,4,CopperBar,5,6,50,1.3,0,{}%_Total_Damage,3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA4",a);a=newl();b=newl();b.h.displayName="Target_Stamp";b.h.sellPrice=100;b.h.typeGen="aStamp";b.h.ID=4;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseAcc,add,1,0,5,CraftMat1,5,6,50,1.3,0,{}_Base_Accuracy,3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA5",a);a=newl();b=newl();b.h.displayName="Shield_Stamp";b.h.sellPrice=400;b.h.typeGen="aStamp";b.h.ID=5;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseDef,add,1,0,5,Iron,5,7,50,1.3,0,{}_Base_Defence,3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA6",a);a=newl();b=newl();b.h.displayName="Longsword_Stamp";b.h.sellPrice=1e3;b.h.typeGen="aStamp";b.h.ID=6;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseDmg,add,2,0,4,Grasslands3,10,6,50,1.3,0,{}_Base_Damage,6";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA7",a);a=newl();b=newl();b.h.displayName="Kapow_Stamp";b.h.sellPrice=2500;b.h.typeGen="aStamp";b.h.ID=7;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="CritDmg,decay,8,40,3,CraftMat5,20,6,50,1.3,0,{}%_Critical_Damage,6";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA8",a);a=newl();b=newl();b.h.displayName="Fist_Stamp";b.h.sellPrice=2500;b.h.typeGen="aStamp";b.h.ID=8;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseSTR,add,1,0,2,BirchTree,20,7,50,1.3,0,{}_STR,3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA9",a);a=newl();b=newl();b.h.displayName="Battleaxe_Stamp";b.h.sellPrice=2500;b.h.typeGen="aStamp";b.h.ID=9;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="PctDmg,decay,10,40,4,Leaf1,15,4,50,1.3,0,{}%_Total_Damage,5";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA10",a);a=newl();b=newl();b.h.displayName="Agile_Stamp";b.h.sellPrice=2500;b.h.typeGen="aStamp";b.h.ID=10;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseAGI,add,1,0,2,EquipmentToolsHatchet3,1,4,50,1.3,0,{}_AGI,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA11",a);a=newl();b=newl();b.h.displayName="Vitality_Stamp";b.h.sellPrice=8e3;b.h.typeGen="aStamp";b.h.ID=11;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseHP,add,2,0,4,Jungle2,25,6,50,1.3,0,{}_Base_HP,6";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA12",a);a=newl();b=newl();b.h.displayName="Book_Stamp";b.h.sellPrice=8e3;b.h.typeGen="aStamp";b.h.ID=12;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseWIS,add,1,0,2,IronBar,20,5,50,1.35,0,{}_WIS,3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA13",a);a=newl();b=newl();b.h.displayName="Manamoar_Stamp";b.h.sellPrice=8e3;b.h.typeGen="aStamp";b.h.ID=13;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseMP,add,2,0,3,Forest1,25,6,75,1.32,0,{}_Base_MP,2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA14",a);a=newl();b=newl();b.h.displayName="Clover_Stamp";b.h.sellPrice=12e3;b.h.typeGen="aStamp";b.h.ID=14;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseLUK,add,1,0,2,EquipmentShirts12,1,2,300,1.38,0,{}_LUK,6";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA15",a);a=newl();b=newl();b.h.displayName="Scimitar_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=15;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseDmg,add,3,0,4,Fish1,75,7,2000,1.33,0,{}_Base_Damage,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA16",a);a=newl();b=newl();b.h.displayName="Bullseye_Stamp";b.h.sellPrice=12500;b.h.typeGen="aStamp";b.h.ID=16;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseAcc,add,2,0,5,Bug3,100,10,5000,1.36,0,{}_Base_Accuracy,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA17",a);a=newl();b=newl();b.h.displayName="Feather_Stamp";b.h.sellPrice=6e3;b.h.typeGen="aStamp";b.h.ID=17;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="PctMoveSpd,decay,5,50,5,DesertB1,25,6,2500,1.3,0,{}_Base_Move_Speed,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA18",a);a=newl();b=newl();b.h.displayName="Polearm_Stamp";b.h.sellPrice=7500;b.h.typeGen="aStamp";b.h.ID=18;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="PctDmg,decay,16,40,6,TestObj7,1,2,3000,1.3,0,{}%_Total_Damage,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA19",a);a=newl();b=newl();b.h.displayName="Violence_Stamp";b.h.sellPrice=25e3;b.h.typeGen="aStamp";b.h.ID=19;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseSTR,add,1,0,3,Dementia,10,7,10000,1.3,0,{}_STR,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA20",a);a=newl();b=newl();b.h.displayName="Buckler_Stamp";b.h.sellPrice=12e3;b.h.typeGen="aStamp";b.h.ID=20;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseDef,add,1,0,7,PlatBar,25,6,2200,1.305,0,{}_Base_Defence,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA21",a);a=newl();b=newl();b.h.displayName="Hermes_Stamp";b.h.sellPrice=1e4;b.h.typeGen="aStamp";b.h.ID=21;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseAGI,add,1,0,3,Soul3,30,7,10000,1.3,0,{}_STR,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA22",a);a=newl();b=newl();b.h.displayName="Sukka_Foo";b.h.sellPrice=1e4;b.h.typeGen="aStamp";b.h.ID=22;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BossDmg,decay,20,60,10,Quest17,3,5,10000,1.34,0,{}%_Boss_Damage,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA23",a);a=newl();b=newl();b.h.displayName="Arcane_Stamp";b.h.sellPrice=6e3;b.h.typeGen="aStamp";b.h.ID=23;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseWIS,add,1,0,3,GoldBar,50,7,1550,1.36,0,{}_Base_WIS,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA24",a);a=newl();b=newl();b.h.displayName="Avast_Yar_Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=24;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseDmg,add,6,0,5,Critter7,75,7,15000,1.33,0,{}_Base_Damage,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA25",a);a=newl();b=newl();b.h.displayName="Steve_Sword";b.h.sellPrice=5e4;b.h.typeGen="aStamp";b.h.ID=25;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="PctDmg,decay,20,60,10,Bug4,150,5,10000,1.32,0,{}%_Total_Damage,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA26",a);a=newl();b=newl();b.h.displayName="Blover_Stamp";b.h.sellPrice=12500;b.h.typeGen="aStamp";b.h.ID=26;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseLUK,add,1,0,4,Fish3,100,7,25000,1.39,0,{}_Base_LUK,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA27",a);a=newl();b=newl();b.h.displayName="Stat_Graph_Stamp";b.h.sellPrice=1e4;b.h.typeGen="aStamp";b.h.ID=27;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseAllStat,add,1,0,2,StoneZ1,2,2,2000,1.36,0,{}_All_Stats,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA28",a);a=newl();b=newl();b.h.displayName="Gilded_Axe_Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=28;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseDmg,add,8,0,6,CraftMat12,200,6,2000000,1.43,0,{}_Base_Damage,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA29",a);a=newl();b=newl();b.h.displayName="Diamond_Axe_Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=29;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="PctDmg,decay,20,60,10,CraftMat14,200,6,3000000,1.47,0,{}%_Total_Damage,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA30",a);a=newl();b=newl();b.h.displayName="Tripleshot_Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=30;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseAcc,add,3,0,10,CraftMat13,200,6,1500000,1.4,0,{}_Base_Accuracy,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA31",a);a=newl();b=newl();b.h.displayName="Blackheart_Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=31;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseHP,add,10,0,15,CraftMat11,200,6,1000000,1.4,0,{}_Base_HP,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA32",a);a=newl();b=newl();b.h.displayName="Maxo_Slappo_Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=32;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseSTR,add,4,0,7,Tree9,1000,10,100000000,1.4,0,{}_Base_STR,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA33",a);a=newl();b=newl();b.h.displayName="Sashe_Sidestamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=33;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseAGI,add,4,0,7,Bug9,1000,10,100000000,1.4,0,{}_Base_AGI,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA34",a);a=newl();b=newl();b.h.displayName="Intellectostampo";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=34;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseWIS,add,4,0,7,Soul6,150,7,100000000,1.4,0,{}_Base_WIS,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA35",a);a=newl();b=newl();b.h.displayName="Conjocharmo_Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=35;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseLUK,add,4,0,10,LavaA1,1000,10,100000000,1.4,0,{}_Base_LUK,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA36",a);a=newl();b=newl();b.h.displayName="Dementia_Sword|Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=36;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="PctDmg,decay,25,80,10,Dreadlo,1000,10,200000000,1.43,0,{}%_Total_Damage,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA37",a);a=newl();b=newl();b.h.displayName="Golden_Sixes|Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=37;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="DropRate,decay,20,80,10,Fish8,250,10,10000000,1.43,0,{}%_Drop_Rate,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA38",a);a=newl();b=newl();b.h.displayName="Stat_Wallstreet|Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=38;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseAllStat,add,2,0,2,StoneZ2,5,2,25000000,1.36,0,{}_All_Stats,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA39",a);a=newl();b=newl();b.h.displayName="Void_Sword|Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=39;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseDmg,add,12,0,10,SpiA2,20000,10,2500000000,1.36,0,{}_Base_Damage,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA40",a);a=newl();b=newl();b.h.displayName="Void_Axe|Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=40;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="PctDmg,decay,35,200,15,Tree12,25000,10,66000000000,1.36,0,{}%_Total_Damage,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA41",a);a=newl();b=newl();b.h.displayName="Captalist_Stats|Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=41;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="AllStatPct,decay,5,100,10,Bug13,40000,10,2200000000000,1.36,0,{}%_All_Stats,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA42",a);a=newl();b=newl();b.h.displayName="Splosion_Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=42;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="PctDmg,decay,50,200,15,w7A3,50000,7,660000000000000,1.36,0,{}%_Total_Damage,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA43",a);a=newl();b=newl();b.h.displayName="Gud_EXP|Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=43;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="classxp,decay,4,200,15,w7A11,250000,12,66000000000000000,1.45,0,{}%_Class_EXP_Multi,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampA44",a);a=newl();b=newl();b.h.displayName="Pickaxe_Stamp";b.h.sellPrice=500;b.h.typeGen="aStamp";b.h.ID=1e3;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseMinEff,add,1,0,10,OakTree,5,4,10,1.2,1,{}_Mining_Efficiency,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB1",a);a=newl();b=newl();b.h.displayName="Hatchet_Stamp";b.h.sellPrice=1200;b.h.typeGen="aStamp";b.h.ID=1001;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseChopEff,add,1,0,10,CraftMat1,10,4,10,1.2,3,{}_Choppin_Efficiency,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB2",a);a=newl();b=newl();b.h.displayName="Anvil_Zoomer|Stamp";b.h.sellPrice=800;b.h.typeGen="aStamp";b.h.ID=1002;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="AnvilPAspd,add,1,0,5,Copper,25,6,50,1.3,2,{}%_Anvil_Production_Spd,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB3",a);a=newl();b=newl();b.h.displayName="Lil'_Mining_Baggy|Stamp";b.h.sellPrice=1e3;b.h.typeGen="aStamp";b.h.ID=1003;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="MinCap,add,1,0,10,JungleTree,25,6,50,1.3,1,{}_Mining_Carry_Cap,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB4",a);a=newl();b=newl();b.h.displayName="Twin_Ores_Stamp";b.h.sellPrice=1e3;b.h.typeGen="aStamp";b.h.ID=1004;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="DoubleMin,decay,15,40,5,EquipmentHats3,1,3,10000,1.3,1,{}%_Multi_Ore_Chance,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB5",a);a=newl();b=newl();b.h.displayName="Choppin'_Bag|Stamp";b.h.sellPrice=1e3;b.h.typeGen="aStamp";b.h.ID=1005;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="ChopCap,add,1,0,10,Jungle3,25,6,50,1.3,3,{}_Choppin_Carry_Cap,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB6",a);a=newl();b=newl();b.h.displayName="Duplogs_Stamp";b.h.sellPrice=1e3;b.h.typeGen="aStamp";b.h.ID=1006;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="DoubleChop,decay,15,40,5,EquipmentHats20,1,3,20000,1.3,3,{}%_Multi_Log_Chance,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB7",a);a=newl();b=newl();b.h.displayName="Matty_Bag_Stamp";b.h.sellPrice=6700;b.h.typeGen="aStamp";b.h.ID=1007;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="MatCap,add,1,0,10,MaxCapBagM2,1,2,50,1.3,2,{}_Material_Carry_Cap,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB8",a);a=newl();b=newl();b.h.displayName="Smart_Dirt_Stamp";b.h.sellPrice=1500;b.h.typeGen="aStamp";b.h.ID=1008;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="MinExp,add,1,0,5,Forest2,25,6,80,1.35,1,{}%_Mining_Exp,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB9",a);a=newl();b=newl();b.h.displayName="Cool_Diggy_Tool|Stamp";b.h.sellPrice=1e3;b.h.typeGen="aStamp";b.h.ID=1009;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseMinEff,add,2,0,10,EquipmentToolsHatchet1,1,2,35000,1.4,\t1,{}_Mining_Efficiency,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB10",a);a=newl();b=newl();b.h.displayName="High_IQ_Lumber|Stamp";b.h.sellPrice=1800;b.h.typeGen="aStamp";b.h.ID=1010;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="ChopExp,add,1,0,5,Forest3,25,6,80,1.35,3,{}%_Choppin_Exp,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB11",a);a=newl();b=newl();b.h.displayName="Swag_Swingy_Tool|Stamp";b.h.sellPrice=2500;b.h.typeGen="aStamp";b.h.ID=1011;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseChopEff,add,2,0,10,EquipmentTools2,1,2,50000,1.36,3,{}_Choppin_Efficiency,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB12",a);a=newl();b=newl();b.h.displayName="Alch_Go_Brrr|Stamp";b.h.sellPrice=2e3;b.h.typeGen="aStamp";b.h.ID=1012;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="AlchSpd,add,1,0,4,ForestTree,40,6,800,1.29,-1,{}%_Alch_Speed,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB13",a);a=newl();b=newl();b.h.displayName="Brainstew_Stamps";b.h.sellPrice=2500;b.h.typeGen="aStamp";b.h.ID=1013;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="AlchExp,add,1,0,5,Gold,40,6,1250,1.28,5,{}%_Alch_Exp,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB14",a);a=newl();b=newl();b.h.displayName="Drippy_Drop_Stamp";b.h.sellPrice=2e3;b.h.typeGen="aStamp";b.h.ID=1014;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="LiquidSpd,add,1,0,5,DesertA1,60,6,1000,1.3,-1,{}%_Liquid_Spd,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB15",a);a=newl();b=newl();b.h.displayName="Droplots_Stamp";b.h.sellPrice=5e3;b.h.typeGen="aStamp";b.h.ID=1015;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="LiquidCap,add,1,0,2,Fish4,25,4,2500,1.3,-1,{}_Liquid_Cap,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB16",a);a=newl();b=newl();b.h.displayName="Fishing_Rod_Stamp";b.h.sellPrice=2e3;b.h.typeGen="aStamp";b.h.ID=1016;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseFishEff,add,2,0,5,Bug1,50,6,1000,1.32,4,{}_Fishing_Efficiency,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB17",a);a=newl();b=newl();b.h.displayName="Fishhead_Stamp";b.h.sellPrice=3e3;b.h.typeGen="aStamp";b.h.ID=1017;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="FishExp,add,1,0,5,DesertA2,55,9,1500,1.33,4,{}%_Fishing_Exp,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB18",a);a=newl();b=newl();b.h.displayName="Catch_Net_Stamp";b.h.sellPrice=2e3;b.h.typeGen="aStamp";b.h.ID=1018;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseCatchEff,add,2,0,5,Fish1,50,6,1000,1.3,6,{}_Catching_Efficiency,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB19",a);a=newl();b=newl();b.h.displayName="Fly_Intel_Stamp";b.h.sellPrice=3e3;b.h.typeGen="aStamp";b.h.ID=1019;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="CatchExp,add,1,0,5,DesertA3,40,10,1500,1.33,6,{}%_Catching_Exp,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB20",a);a=newl();b=newl();b.h.displayName="Bag_o_Heads_Stamp";b.h.sellPrice=2e3;b.h.typeGen="aStamp";b.h.ID=1020;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="FishCap,add,1,0,8,Bug2,35,7,1000,1.3,4,{}%_Fish_Carry_Cap,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB21",a);a=newl();b=newl();b.h.displayName="Holy_Mackerel|Stamp";b.h.sellPrice=3e3;b.h.typeGen="aStamp";b.h.ID=1021;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="DoubleFish,decay,20,40,5,Plat,30,6,1500,1.3,4,{}%_Multifish_Chance,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB22",a);a=newl();b=newl();b.h.displayName="Bugsack_Stamp";b.h.sellPrice=3e3;b.h.typeGen="aStamp";b.h.ID=1022;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="CatchCap,add,1,0,8,Fish2,35,7,1000,1.3,6,{}%_Bug_Carry_Cap,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB23",a);a=newl();b=newl();b.h.displayName="Buzz_Buzz_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1023;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="DoubleCatch,decay,20,40,5,ToiletTree,45,6,1500,1.3,6,{}%_Multibug_Chance,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB24",a);a=newl();b=newl();b.h.displayName="Hidey_Box_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1024;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="TrappingEff,add,2,0,10,Critter2,100,5,7500,1.3,7,{}_Trapping_Efficiency,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB25",a);a=newl();b=newl();b.h.displayName="Purp_Froge_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1025;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="ShinyChance,add,1,0,5,Critter3,125,6,10000,1.3,7,{}%_Shiny_Chance,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB26",a);a=newl();b=newl();b.h.displayName="Spikemouth_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1026;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="TrappingExp,add,1,0,3,Critter4,150,6,12500,1.3,7,{}%_Trapping_Exp,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB27",a);a=newl();b=newl();b.h.displayName="Shiny_Crab_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1027;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="ShinyChance,add,2,0,3,Critter5,200,7,15000,1.3,7,{}%_Shiny_Chance,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB28",a);a=newl();b=newl();b.h.displayName="Gear_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1028;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BuildProd,add,1,0,3,SnowB1,100,5,10000,1.3,8,{}%_Building_Spd,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB29",a);a=newl();b=newl();b.h.displayName="Stample_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1029;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="SampleRate,decay,4,30,4,SnowA1,100,6,10000,1.3,0,{}%_Sample_Size,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB30",a);a=newl();b=newl();b.h.displayName="Saw_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1030;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="ConstructionExp,add,1,0,3,DementiaBar,20,5,15000,1.3,8,{}%_Construction_Exp,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB31",a);a=newl();b=newl();b.h.displayName="Amplestample_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1031;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="SampleRate,decay,5,30,4,Bug5,2500,12,50000,1.5,0,{}%_Sample_Size,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB32",a);a=newl();b=newl();b.h.displayName="SpoOoky_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1032;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="WorshipEff,add,2,0,10,Soul1,45,6,7500,1.3,9,{}_Worship_Efficiency,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB33",a);a=newl();b=newl();b.h.displayName="Flowin_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1033;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="WorshipCharge,add,1,0,2,Refinery1,2,5,15000,1.3,9,{}%_Charging_Speed,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB34",a);a=newl();b=newl();b.h.displayName="Prayday_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1034;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="WorshipMax,add,1,0,2,SnowB4,150,6,10000,1.3,9,{}%_Max_Charge,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB35",a);a=newl();b=newl();b.h.displayName="Banked_Pts_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1035;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="WorshipPTS,add,1,0,6,Soul2,100,3,6000,1.3,9,{}_Starting_TD_Pts,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB36",a);a=newl();b=newl();b.h.displayName="Cooked_Meal_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1036;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="MealCook,add,2,0,15,Fish5,200,5,1000000,1.35,0,{}%_Meal_Cooking_Spd,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB37",a);a=newl();b=newl();b.h.displayName="Spice_Stamp";b.h.sellPrice=5e7;b.h.typeGen="aStamp";b.h.ID=1037;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="RecipeCook,add,2,0,15,GalaxyA1,200,5,1000000,1.35,0,{}%_New_Recipe_Spd,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB38",a);a=newl();b=newl();b.h.displayName="Ladle_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1038;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="CookingEff,add,25,0,10,Fish6,200,5,1000000,1.35,0,{}_Cooking_Efficiency,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB39",a);a=newl();b=newl();b.h.displayName="Nest_Eggs_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1039;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BreedExp,add,1,0,10,AlienTree,200,5,1000000,1.4,0,{}%_Breeding_EXP,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB40",a);a=newl();b=newl();b.h.displayName="Egg_Stamp";b.h.sellPrice=1e7;b.h.typeGen="aStamp";b.h.ID=1040;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="NewPet,add,1,0,15,GalaxyA3,200,5,1000000,1.4,0,{}%_New_Mob_Chance,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB41",a);a=newl();b=newl();b.h.displayName="Lab_Tube_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1041;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="LabExp,add,1,0,10,GalaxyB1,200,5,1000000,1.35,0,{}%_Lab_EXP,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB42",a);a=newl();b=newl();b.h.displayName="Sailboat_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1042;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="SailSpd,add,1,0,5,LavaA5,1000,5,500000000,1.35,0,{}%_Sailing_Speed,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB43",a);a=newl();b=newl();b.h.displayName="Gamejoy_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1043;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="GamingExp,add,1,0,5,Tree10,500,8,500000000,1.35,0,{}%_Gaming_EXP,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB44",a);a=newl();b=newl();b.h.displayName="Divine_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1044;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="DivineExp,add,1,0,8,LavaB3,1000,10,500000000,1.35,0,{}%_Divinity_EXP,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB45",a);a=newl();b=newl();b.h.displayName="Multitool_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1045;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BaseAllEff,add,10,0,10,Bug10,500,8,800000000,1.35,0,{}_All_Efficiency,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB46",a);a=newl();b=newl();b.h.displayName="Skelefish_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1046;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="FishEffPerLv,decay,0.2,20,2,Fish5,250,10,800000000,1.35,0,{}%_Fishing_Eff_Per_Fishing_Lv,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB47",a);a=newl();b=newl();b.h.displayName="Crop_Evo_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1047;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="CropEvo,add,5,0,5,Fish9,12000,10,100000000000.0,1.37,0,{}%_Crop_Evolution_Chance,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB48",a);a=newl();b=newl();b.h.displayName="Sneaky_Peeky|Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1048;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="SneakExp,decay,50,150,8,SpiA4,20000,10,50000000000.0,1.37,0,{}%_Sneaking_EXP_gain,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB49",a);a=newl();b=newl();b.h.displayName="Jade_Mint|Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1049;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="JadeCoin,add,0.5,0,10,SpiA2b,15,7,20000000000.0,1.37,0,{}%_Jade_Coin_gain,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB50",a);a=newl();b=newl();b.h.displayName="Summoner_Stone|Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1050;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="SummonExp,decay,50,150,8,Soul7,8000,10,50000000000.0,1.37,0,{}%_Summoning_EXP_gain,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB51",a);a=newl();b=newl();b.h.displayName="White_Essence|Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1051;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="WhiteEss,add,1,0,8,Bug12,15000,10,60000000000.0,1.37,0,{}%_White_Essence_Gain_gain,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB52",a);a=newl();b=newl();b.h.displayName="Triad_Essence|Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1052;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="123Ess,add,1,0,8,Fish12,8000,10,800000000000.0,1.37,0,{}%_G_Y_and_B_Essence_gain,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB53",a);a=newl();b=newl();b.h.displayName="Dark_Triad|Essence_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1053;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="456Ess,add,1,0,8,Tree13,45000,10,12000000000000.0,1.37,0,{}%_P_R_and_C_Essence_gain,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB54",a);a=newl();b=newl();b.h.displayName="Amber_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1054;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="spelunkamb,decay,30,150,8,Spelunking1,500,10,1200000000000000.0,1.37,0,{}%_Amber_Gain,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB55",a);a=newl();b=newl();b.h.displayName="Little_Rock|Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1055;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="spelunkeff,decay,200,220,8,Spelunking0,100,10,1200000000000000.0,1.37,0,{}%_Spelunking_Efficiency,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB56",a);a=newl();b=newl();b.h.displayName="Hardhat_Stamp";b.h.sellPrice=4e3;b.h.typeGen="aStamp";b.h.ID=1056;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="spelunkxp,decay,50,150,8,Spelunking2,100,10,1200000000000000.0,1.37,0,{}%_Spelunking_EXP_gain,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampB57",a);a=newl();b=newl();b.h.displayName="Questin_Stamp";b.h.sellPrice=1e3;b.h.typeGen="aStamp";b.h.ID=2e3;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="QuestExp,decay,70,50,10,Jungle1,30,6,500,1.32,0,{}%_Quest_EXP,3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC1",a);a=newl();b=newl();b.h.displayName="Mason_Jar_Stamp";b.h.sellPrice=1e4;b.h.typeGen="aStamp";b.h.ID=2001;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="AllCarryCap,add,1,0,4,DesertA1b,1,3,4000,1.28,0,{}%_All_Carry_Cap,3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC2",a);a=newl();b=newl();b.h.displayName="Crystallin";b.h.sellPrice=2e3;b.h.typeGen="aStamp";b.h.ID=2002;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="CrySpawn,decay,110,50,10,CraftMat6,35,8,800,1.31,0,{}%_Spawn_Chance,3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC3",a);a=newl();b=newl();b.h.displayName="Arcade_Ball_Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=2003;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="ArcadeBallz,decay,50,100,10,Copper,30,6,1500,1.33,0,{}%_ball_gain_rate,3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC4",a);a=newl();b=newl();b.h.displayName="Gold_Ball_Stamp";b.h.sellPrice=1e3;b.h.typeGen="aStamp";b.h.ID=2004;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="GoldBallz,decay,40,100,10,Fish1,50,6.5,1000,1.33,0,{}%_HP_Food_Effect,3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC5",a);a=newl();b=newl();b.h.displayName="Potion_Stamp";b.h.sellPrice=3e3;b.h.typeGen="aStamp";b.h.ID=2005;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BFood,add,1,0,5,FoodMining1,50,8,1500,1.305,0,{}%_Boost_Food_Effect,3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC6",a);a=newl();b=newl();b.h.displayName="Golden_Apple|Stamp";b.h.sellPrice=1e4;b.h.typeGen="aStamp";b.h.ID=2006;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="GFood,add,1,0,4,FoodG4,2,4,3000,1.30,0,{}%_Gold_Food_Effect,3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC7",a);a=newl();b=newl();b.h.displayName="Ball_Timer_Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=2007;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="ArcadeTimeMax,decay,12,30,5,OakTree,100,15,1000,1.32,0,{}hr_Max_Claim_Time,3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC8",a);a=newl();b=newl();b.h.displayName="Card_Stamp";b.h.sellPrice=3e3;b.h.typeGen="aStamp";b.h.ID=2008;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="CardDrop,add,1,0,10,DesertB2,25,6,1200,1.31,0,{}%_Card_Drop_Rate,3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC9",a);a=newl();b=newl();b.h.displayName="Forge_Stamp";b.h.sellPrice=1e12;b.h.typeGen="aStamp";b.h.ID=2009;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="ForgeCap,decay,120,250,10,Godshard,250,8,5000000000000,1.3,0,{}%_Forge_Capacity,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC10",a);a=newl();b=newl();b.h.displayName="Vendor_Stamp";b.h.sellPrice=1e5;b.h.typeGen="aStamp";b.h.ID=2010;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="ShopQty,decay,35,100,10,CraftMat3,100,10,30000,1.5,0,{}%_Higher_Shop_QTY,3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC11",a);a=newl();b=newl();b.h.displayName="Sigil_Stamp";b.h.sellPrice=7e8;b.h.typeGen="aStamp";b.h.ID=2011;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="SigilCharge,decay,40,150,12,SnowA4,2000,6,1000000,1.32,0,{}%_Sigil_Charge_rate,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC12",a);a=newl();b=newl();b.h.displayName="Talent_I_Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=2012;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Talent1,add,1,0,2,Grasslands2,50,10,2000,1.4,0,{}_Talent_1_Pts,3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC13",a);a=newl();b=newl();b.h.displayName="Talent_II_Stamp";b.h.sellPrice=12e3;b.h.typeGen="aStamp";b.h.ID=2013;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Talent2,add,1,0,2,DesertB3,200,8,4000,1.35,0,{}_Talent_2_Pts,3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC14",a);a=newl();b=newl();b.h.displayName="Talent_III_Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=2014;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Talent3,add,1,0,2,Leaf3,20,4,40000,1.35,0,{}_Talent_3_Pts,3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC15",a);a=newl();b=newl();b.h.displayName="Talent_IV_Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=2015;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Talent4,add,1,0,2,LavaA1b,2,3,300000000,1.4,0,{}_Talent_4_Pts,3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC16",a);a=newl();b=newl();b.h.displayName="Talent_V_Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=2016;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Talent5,add,1,0,2,Copper,25,6,50,1.3,0,{}_Talent_5_Pts,3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC17",a);a=newl();b=newl();b.h.displayName="Talent_S_Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=2017;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="TalentS,add,1,0,2,Leaf2,20,4,50,1.3,0,{}_Star_Talent_Pts,3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC18",a);a=newl();b=newl();b.h.displayName="Multikill_Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=2018;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Overkill,add,1,0,2,Grasslands1,100,3,10000,1.3,0,{}%_Base_Overkill,3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC19",a);a=newl();b=newl();b.h.displayName="Biblio_Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=2019;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="BookSpd,add,1,0,2,SaharanFoal,125,5,12500,1.3,0,{}%_Faster_Books,3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC20",a);a=newl();b=newl();b.h.displayName="DNA_Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=2020;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="DNAsplice,add,1,0,3,Bug7,200,5,1000000,1.6,0,{}%_more_DNA,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC21",a);a=newl();b=newl();b.h.displayName="Refinery_Stamp";b.h.sellPrice=3e7;b.h.typeGen="aStamp";b.h.ID=2021;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="RefinerySpd,add,1,0,5,LavaA4,250,5,25000000,1.52,0,{}%_faster_refinery,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC22",a);a=newl();b=newl();b.h.displayName="Atomic_Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=2022;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="AtomCost,decay,20,80,8,SpiA3,2500,5,25000000,1.52,0,{}%_lower_Atom_upgrade_costs,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC23",a);a=newl();b=newl();b.h.displayName="Cavern_Resource|Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=2023;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="CavernRes,decay,100,250,20,Ladle,10,20,2000000000,1.72,0,{}%_more_resources_from_caverns,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC24",a);a=newl();b=newl();b.h.displayName="Study_Hall|Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=2024;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="VillageStudy,decay,30,160,15,EquipmentStatues29,30,20,2000000000,1.72,0,{}%_faster_Study_Rate_for_Bolaia,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC25",a);a=newl();b=newl();b.h.displayName="Kruker_Stamp";b.h.sellPrice=1e19;b.h.typeGen="aStamp";b.h.ID=2025;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="krukd,add,1,0,1,w7A1,20000,100,2000000000000000000.0,4.5,0,{}_daily_Kattlekruk_bubble_LVs,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC26",a);a=newl();b=newl();b.h.displayName="Corale_Stamp";b.h.sellPrice=1;b.h.typeGen="aStamp";b.h.ID=2026;b.h.Type="STAMP";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="corale,decay,10,150,15,w7A9,2500,10,20000000000000.0,1.72,0,{}%_extra_daily_Reef_Coral,0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("StampC27",a);a=newl();b=newl();b.h.displayName="Easter_Weapon|Stone";b.h.sellPrice=125;b.h.typeGen="dStone";b.h.ID=0;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Weapon_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,1.Defence,2";b.h.Amount=25;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneWe",a);a=newl();b=newl();b.h.displayName="Summer_Weapon|Stone";b.h.sellPrice=125;b.h.typeGen="dStone";b.h.ID=0;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Weapon_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,3.Defence,2";b.h.Amount=40;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneWeb",a);a=newl();b=newl();b.h.displayName="Weapon_Upgrade|Stone_I";b.h.sellPrice=125;b.h.typeGen="dStone";b.h.ID=0;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Weapon_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,1";b.h.Amount=100;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneW1",a);a=newl();b=newl();b.h.displayName="Weapon_Upgrade|Stone_II";b.h.sellPrice=1500;b.h.typeGen="dStone";b.h.ID=0;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Weapon_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,1.Random_Stat,1";b.h.Amount=80;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneW2",a);a=newl();b=newl();b.h.displayName="Weapon_Upgrade|Stone_III";b.h.sellPrice=25e3;b.h.typeGen="dStone";b.h.ID=0;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Weapon_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,2.Random_Stat,1";b.h.Amount=50;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneW3",a);a=newl();b=newl();b.h.displayName="Weapon_Upgrade|Stone_C";b.h.sellPrice=25e3;b.h.typeGen="dStone";b.h.ID=0;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Weapon_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_item_slots.";b.h.desc_line4="WARNING:Slots_are_used_up_even";b.h.desc_line5="if_the_Upgrade_fails!";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,6";b.h.Amount=60;b.h.Trigger=1;b.h.Cooldown=1;a.h.consumable=b;O.addNewConsumable("StoneW3b",a);a=newl();b=newl();b.h.displayName="Warped_Weapon|Upgrade_Stone";b.h.sellPrice=25e3;b.h.typeGen="dStone";b.h.ID=0;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Weapon_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_item_slots.";b.h.desc_line4="WARNING:Slots_are_used_up_even";b.h.desc_line5="if_the_Upgrade_fails!";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,3.Random_Stat,4";b.h.Amount=50;b.h.Trigger=1;b.h.Cooldown=1;a.h.consumable=b;O.addNewConsumable("StoneW6",a);a=newl();b=newl();b.h.displayName="Weapon_Upgrade|Stone_IV";b.h.sellPrice=6e5;b.h.typeGen="dStone";b.h.ID=0;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Weapon_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,4.Main_Stat,3";b.h.Amount=20;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneW4",a);a=newl();b=newl();b.h.displayName="Weapon_Upgrade|Stone_V";b.h.sellPrice=6e6;b.h.typeGen="dStone";b.h.ID=0;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Weapon_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,5.Main_Stat,5";b.h.Amount=30;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneW5",a);a=newl();b=newl();b.h.displayName="Weapon_Upgrade|Stone_SK";b.h.sellPrice=5e3;b.h.typeGen="dStone";b.h.ID=0;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Weapon_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,7.Main_Stat,6";b.h.Amount=60;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneW7",a);a=newl();b=newl();b.h.displayName="Weapon_Upgrade|Stone_VI";b.h.sellPrice=6e8;b.h.typeGen="dStone";b.h.ID=0;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Weapon_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,8.Main_Stat,7";b.h.Amount=75;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneW8",a);a=newl();b=newl();b.h.displayName="Weapon_Upgrade|Stone_VII";b.h.sellPrice=6e12;b.h.typeGen="dStone";b.h.ID=0;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Weapon_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,10.Main_Stat,10.Misc_Bonus,3";b.h.Amount=25;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneW9",a);a=newl();b=newl();b.h.displayName="Easter_Armor|Stone";b.h.sellPrice=100;b.h.typeGen="dStone";b.h.ID=1;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Armor_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Defence,1.Random_Stat,3";b.h.Amount=30;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneAe",a);a=newl();b=newl();b.h.displayName="Summer_Armor|Stone";b.h.sellPrice=100;b.h.typeGen="dStone";b.h.ID=1;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Armor_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Defence,3.Random_Stat,1";b.h.Amount=60;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneAeB",a);a=newl();b=newl();b.h.displayName="Armor_Upgrade|Stone_I";b.h.sellPrice=100;b.h.typeGen="dStone";b.h.ID=1;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Armor_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Defence,2.Random_Stat,1";b.h.Amount=100;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneA1",a);a=newl();b=newl();b.h.displayName="Armor_Upgrade|Stone_G";b.h.sellPrice=100;b.h.typeGen="dStone";b.h.ID=1;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Armor_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Random_Stat,4";b.h.Amount=42;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneA1b",a);a=newl();b=newl();b.h.displayName="Armor_Upgrade|Stone_II";b.h.sellPrice=850;b.h.typeGen="dStone";b.h.ID=1;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Armor_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Defence,3.Random_Stat,2";b.h.Amount=80;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneA2",a);a=newl();b=newl();b.h.displayName="Armor_Upgrade|Stone_B";b.h.sellPrice=100;b.h.typeGen="dStone";b.h.ID=1;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Armor_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_item_slots.";b.h.desc_line4="WARNING:Slots_are_used_up_even";b.h.desc_line5="if_the_Upgrade_fails!";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Defence,5";b.h.Amount=45;b.h.Trigger=1;b.h.Cooldown=1;a.h.consumable=b;O.addNewConsumable("StoneA2b",a);a=newl();b=newl();b.h.displayName="Armor_Upgrade|Stone_III";b.h.sellPrice=15e3;b.h.typeGen="dStone";b.h.ID=1;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Armor_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Defence,4.Random_Stat,4";b.h.Amount=50;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneA3",a);a=newl();b=newl();b.h.displayName="Armor_Upgrade|Stone_C";b.h.sellPrice=15e3;b.h.typeGen="dStone";b.h.ID=1;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Armor_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,1.Random_Stat,3";b.h.Amount=60;b.h.Trigger=1;b.h.Cooldown=1;a.h.consumable=b;O.addNewConsumable("StoneA3b",a);a=newl();b=newl();b.h.displayName="Armor_Upgrade|Stone_IV";b.h.sellPrice=45e4;b.h.typeGen="dStone";b.h.ID=1;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Armor_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Defence,7.Main_Stat,4";b.h.Amount=20;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneA4",a);a=newl();b=newl();b.h.displayName="Armor_Upgrade|Stone_V";b.h.sellPrice=3e6;b.h.typeGen="dStone";b.h.ID=1;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Armor_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Defence,10.Main_Stat,6";b.h.Amount=30;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneA5",a);a=newl();b=newl();b.h.displayName="Armor_Upgrade|Stone_SK";b.h.sellPrice=3e4;b.h.typeGen="dStone";b.h.ID=1;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Armor_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,1.Defence,13.Main_Stat,8";b.h.Amount=60;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneA6",a);a=newl();b=newl();b.h.displayName="Armor_Upgrade|Stone_VI";b.h.sellPrice=45e6;b.h.typeGen="dStone";b.h.ID=1;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Armor_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,1.Defence,15.Main_Stat,10";b.h.Amount=75;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneA7",a);a=newl();b=newl();b.h.displayName="Armor_Upgrade|Stone_VII";b.h.sellPrice=6e12;b.h.typeGen="dStone";b.h.ID=1;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Armor_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,2.Defence,20.Main_Stat,15.Misc_Bonus,1";b.h.Amount=25;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneA8",a);a=newl();b=newl();b.h.displayName="Easter_Tool|Upgrade_Stone";b.h.sellPrice=110;b.h.typeGen="dStone";b.h.ID=2;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Tool_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Random_Stat,3";b.h.Amount=30;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneTe",a);a=newl();b=newl();b.h.displayName="Tool_Upgrade|Stone_I";b.h.sellPrice=110;b.h.typeGen="dStone";b.h.ID=2;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Tool_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,1.Random_Stat,1";b.h.Amount=100;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneT1",a);a=newl();b=newl();b.h.displayName="Giftmas_Tool|Upgrade_Stone";b.h.sellPrice=110;b.h.typeGen="dStone";b.h.ID=2;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Tool_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Random_Stat,4";b.h.Amount=60;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneT1e",a);a=newl();b=newl();b.h.displayName="Summer_Tool|Upgrade_Stone";b.h.sellPrice=110;b.h.typeGen="dStone";b.h.ID=2;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Tool_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,2.Defence,3";b.h.Amount=50;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneT1eb",a);a=newl();b=newl();b.h.displayName="Tool_Upgrade|Stone_II";b.h.sellPrice=1250;b.h.typeGen="dStone";b.h.ID=2;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Tool_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,2.Random_Stat,2";b.h.Amount=80;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneT2",a);a=newl();b=newl();b.h.displayName="Tool_Upgrade|Stone_III";b.h.sellPrice=2e4;b.h.typeGen="dStone";b.h.ID=2;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Tool_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,3.Random_Stat,4";b.h.Amount=50;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneT3",a);a=newl();b=newl();b.h.displayName="Tool_Upgrade|Stone_IV";b.h.sellPrice=55e4;b.h.typeGen="dStone";b.h.ID=2;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Tool_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,5.Main_Stat,4";b.h.Amount=20;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneT4",a);a=newl();b=newl();b.h.displayName="Tool_Upgrade|Stone_V";b.h.sellPrice=4e6;b.h.typeGen="dStone";b.h.ID=2;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Tool_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,6.Main_Stat,6";b.h.Amount=30;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneT5",a);a=newl();b=newl();b.h.displayName="Tool_Upgrade|Stone_SK";b.h.sellPrice=4e3;b.h.typeGen="dStone";b.h.ID=2;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Tool_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,8.Main_Stat,9";b.h.Amount=60;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneT6",a);a=newl();b=newl();b.h.displayName="Tool_Upgrade|Stone_VI";b.h.sellPrice=3e7;b.h.typeGen="dStone";b.h.ID=2;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Tool_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,9.Main_Stat,12";b.h.Amount=75;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneT7",a);a=newl();b=newl();b.h.displayName="Tool_Upgrade|Stone_VII";b.h.sellPrice=6e12;b.h.typeGen="dStone";b.h.ID=2;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Tool_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,12.Main_Stat,15.Misc_Bonus,2";b.h.Amount=25;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneT8",a);a=newl();b=newl();b.h.displayName="Helmet_Upgrade|Stone_I";b.h.sellPrice=400;b.h.typeGen="dStone";b.h.ID=1;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Helmet_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Random_Stat,3";b.h.Amount=70;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneHelm1",a);a=newl();b=newl();b.h.displayName="Warped_Helmet|Upgrade_Stone";b.h.sellPrice=5e3;b.h.typeGen="dStone";b.h.ID=4;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Helmet_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_item_slots.";b.h.desc_line4="WARNING:Slots_are_used_up_even";b.h.desc_line5="if_the_Upgrade_fails!";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Random_Stat,5";b.h.Amount=50;b.h.Trigger=1;b.h.Cooldown=1;a.h.consumable=b;O.addNewConsumable("StoneHelm6",a);a=newl();b=newl();b.h.displayName="Giftmas_Helmet|Upgrade_Stone";b.h.sellPrice=5e3;b.h.typeGen="dStone";b.h.ID=4;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Helmet_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_item_slots.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Random_Stat,4";b.h.Amount=60;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneHelm1b",a);a=newl();b=newl();b.h.displayName="Helmet_Upgrade|Stone_SK";b.h.sellPrice=5e3;b.h.typeGen="dStone";b.h.ID=4;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Helmet_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_item_slots.";b.h.desc_line4="WARNING:Slots_are_used_up_even";b.h.desc_line5="if_the_Upgrade_fails!";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Random_Stat,14";b.h.Amount=60;b.h.Trigger=1;b.h.Cooldown=1;a.h.consumable=b;O.addNewConsumable("StoneHelm7",a);a=newl();b=newl();b.h.displayName="Mystery_Upgrade|Stone_I";b.h.sellPrice=777;b.h.typeGen="dStone";b.h.ID=5;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Equip_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful.";b.h.desc_line4="WARNING:Mystery_Stat_has_a_chance";b.h.desc_line5="to_be_Negative,_and_reduce_stats!";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Mystery_Stat,3";b.h.Amount=100;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneZ1",a);a=newl();b=newl();b.h.displayName="Mystery_Upgrade|Stone_II";b.h.sellPrice=777;b.h.typeGen="dStone";b.h.ID=5;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Equip_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful.";b.h.desc_line4="WARNING:Mystery_Stat_has_a_chance";b.h.desc_line5="to_be_Negative,_and_reduce_stats!";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Mystery_Stat,4";b.h.Amount=60;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneZ2",a);a=newl();b=newl();b.h.displayName="Mystery_Upgrade|Stone_III";b.h.sellPrice=777;b.h.typeGen="dStone";b.h.ID=5;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Equip_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful.";b.h.desc_line4="WARNING:Mystery_Stat_has_a_chance";b.h.desc_line5="to_be_Negative,_and_reduce_stats!";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Mystery_Stat,10";b.h.Amount=50;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneZ3",a);a=newl();b=newl();b.h.displayName="Mystery_Upgrade|Stone_IV";b.h.sellPrice=777;b.h.typeGen="dStone";b.h.ID=5;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Equip_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_slots_only_if_Successful.";b.h.desc_line4="WARNING:Mystery_Stat_has_a_chance";b.h.desc_line5="to_be_Negative,_and_reduce_stats!";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Mystery_Stat,20";b.h.Amount=40;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StoneZ4",a);a=newl();b=newl();b.h.displayName="Premium_STR|Stone";b.h.sellPrice=777;b.h.typeGen="dStone";b.h.ID=6;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Equip_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Can_only_be_used_on_Premium_Equips!";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="STR,5";b.h.Amount=101;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StonePremSTR",a);a=newl();b=newl();b.h.displayName="Premium_AGI|Stone";b.h.sellPrice=777;b.h.typeGen="dStone";b.h.ID=6;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Equip_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Can_only_be_used_on_Premium_Equips!";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="AGI,5";b.h.Amount=101;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StonePremAGI",a);a=newl();b=newl();b.h.displayName="Premium_WIS|Stone";b.h.sellPrice=777;b.h.typeGen="dStone";b.h.ID=6;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Equip_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Can_only_be_used_on_Premium_Equips!";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="WIS,5";b.h.Amount=101;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StonePremWIS",a);a=newl();b=newl();b.h.displayName="Premium_LUK|Stone";b.h.sellPrice=777;b.h.typeGen="dStone";b.h.ID=6;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_any_Equip_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Can_only_be_used_on_Premium_Equips!";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="LUK,5";b.h.Amount=101;b.h.Trigger=1;b.h.Cooldown=0;a.h.consumable=b;O.addNewConsumable("StonePremLUK",a);a=newl();b=newl();b.h.displayName="Ice_A_La_Crem";b.h.sellPrice=1;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_just_a_normal_ice_cream._It's";b.h.desc_line2="been_given_a_fancy_name_so_people";b.h.desc_line3="would_pay_more_for_it_in_a_store.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("IceMountains2",a);a=newl();b=newl();b.h.displayName="Minuteglass";b.h.sellPrice=1;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_a_bit_small,_so_it's_not_quite_an_hourglass,_is_it.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Hgg",a);a=newl();b=newl();b.h.displayName="Starlight_Ore";b.h.sellPrice=5;b.h.typeGen="bOre";b.h.ID=0;b.h.Type="ORE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="These_ores_cannot_be_smelted_into";b.h.desc_line2="into_bars_due_to_the_'Keep_Tutorials";b.h.desc_line3="Simple'_Act_passed_in_2008.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Ore";b.h.Amount=4;b.h.Trigger=0;b.h.Cooldown=100;a.h.consumable=b;O.addNewConsumable("Starlight",a);a=newl();b=newl();b.h.displayName="Alien_Logs";b.h.sellPrice=50;b.h.typeGen="bLog";b.h.ID=0;b.h.Type="LOG";b.h.lvReqToCraft="0";a.h.common=b;O.addNewItem("AlienTreetutorial",a);a=newl();b=newl();b.h.displayName="Flesh_Reaper";b.h.sellPrice=40;b.h.typeGen="aWeapon";b.h.ID=5;b.h.Type="SPEAR";b.h.lvReqToCraft="85";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=9;b.h.Reach=70;b.h.Weapon_Power=2500;b.h.STR=1e4;b.h.AGI=2500;b.h.WIS=1e3;b.h.LUK=4200;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentWeapons2",a);a=newl();b=newl();b.h.displayName="Secretstone";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=200;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="It's_almost_as_if_the_very_essence";b.h.desc_line2="of_wonder_and_mystery_has_been";b.h.desc_line3="infused_into_this_little_stone.";b.h.desc_line4="Keep_this_secret_to_yourself,";b.h.desc_line5="don't_tell_the_noobs_about_it!";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Secretstone",a);a=newl();b=newl();b.h.displayName="1_HR_Time_Candy";b.h.sellPrice=1;b.h.typeGen="dTimeCandy";b.h.ID=60;b.h.Type="TIME_CANDY";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_instantly_get_1_Hour_of_AFK_Gains.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Timecandy1",a);a=newl();b=newl();b.h.displayName="2_HR_Time_Candy";b.h.sellPrice=1;b.h.typeGen="dTimeCandy";b.h.ID=120;b.h.Type="TIME_CANDY";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_instantly_get_2_Hour_of_AFK_Gains.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Timecandy2",a);a=newl();b=newl();b.h.displayName="4_HR_Time_Candy";b.h.sellPrice=1;b.h.typeGen="dTimeCandy";b.h.ID=240;b.h.Type="TIME_CANDY";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_instantly_get_4_Hour_of_AFK_Gains.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Timecandy3",a);a=newl();b=newl();b.h.displayName="12_HR_Time_Candy";b.h.sellPrice=1;b.h.typeGen="dTimeCandy";b.h.ID=720;b.h.Type="TIME_CANDY";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="Twelve_hours,_that's_a_long_time!_Hold_down_to_instantly_get_12_Hour_of_AFK_Gains.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Timecandy4",a);a=newl();b=newl();b.h.displayName="24_HR_Time_Candy";b.h.sellPrice=1;b.h.typeGen="dTimeCandy";b.h.ID=1440;b.h.Type="TIME_CANDY";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="An_entire_day,_just_like_that!_Hold_down_to_instantly_get_24_Hour_of_AFK_Gains.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Timecandy5",a);a=newl();b=newl();b.h.displayName="72_HR_Time_Candy";b.h.sellPrice=1;b.h.typeGen="dTimeCandy";b.h.ID=4320;b.h.Type="TIME_CANDY";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="The_LEGENDARY_72_Hour_candy._Hold_down_to_instantly_get_30_Seconds_of_AFK_Gai..._just_kidding,_you'll_get_72_Hours!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Timecandy6",a);a=newl();b=newl();b.h.displayName="Steamy_Time_Candy";b.h.sellPrice=1;b.h.typeGen="dTimeCandy";b.h.ID=1;b.h.Type="TIME_CANDY";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="Thanks_for_playing_on_Steam!_Hold_down_to_instantly_get_anywhere_from_10_minutes_to_24_hours_of_AFK_time!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Timecandy7",a);a=newl();b=newl();b.h.displayName="Spooky_Time_Candy";b.h.sellPrice=1;b.h.typeGen="dTimeCandy";b.h.ID=2;b.h.Type="TIME_CANDY";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="_Hold_down_to_instantly_get_anywhere_from_20_minutes_to_12_hours_of_AFK_time!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Timecandy8",a);a=newl();b=newl();b.h.displayName="Cosmic_Time_Candy";b.h.sellPrice=1;b.h.typeGen="dTimeCandy";b.h.ID=3;b.h.Type="TIME_CANDY";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_get_anywhere_from_5_hours_to_500_hours_of_AFK_time!_Gives_24_hrs_on_average._Odds_are:_54%_for_5-10hr,_25%_for_10-25hr,_18%_for_25-100_hr,_2.1%_for_100-499hr,_0.4%_for_500hr.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Timecandy9",a);a=newl();b=newl();b.h.displayName="Spirit_Time_Candy";b.h.sellPrice=1;b.h.typeGen="dTimeCandy";b.h.ID=1440;b.h.Type="TIME_CANDY";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="The_only_time_candy_usable_in_World_6!_Hold_down_to_instantly_get_24_Hours_of_AFK_Gains!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Timecandy10",a);a=newl();b=newl();b.h.displayName="Inventory_Bag_A";b.h.sellPrice=200;b.h.typeGen="aInventoryBag";b.h.ID=0;b.h.Type="INVENTORY_G";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=-20;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag1",a);a=newl();b=newl();b.h.displayName="Inventory_Bag_B";b.h.sellPrice=200;b.h.typeGen="aInventoryBag";b.h.ID=1;b.h.Type="INVENTORY_";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=3;b.h.Class="ALL";b.h.Speed=-20;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag2",a);a=newl();b=newl();b.h.displayName="Inventory_Bag_C";b.h.sellPrice=200;b.h.typeGen="aInventoryBag";b.h.ID=2;b.h.Type="INVENTORY_";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=5;b.h.Class="ALL";b.h.Speed=-20;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag3",a);a=newl();b=newl();b.h.displayName="Inventory_Bag_D";b.h.sellPrice=200;b.h.typeGen="aInventoryBag";b.h.ID=3;b.h.Type="INVENTORY_";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=10;b.h.Class="ALL";b.h.Speed=165;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag4",a);a=newl();b=newl();b.h.displayName="Inventory_Bag_E";b.h.sellPrice=200;b.h.typeGen="aInventoryBag";b.h.ID=4;b.h.Type="INVENTORY_";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=165;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag5",a);a=newl();b=newl();b.h.displayName="Inventory_Bag_F";b.h.sellPrice=200;b.h.typeGen="aInventoryBag";b.h.ID=5;b.h.Type="INVENTORY_";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=20;b.h.Class="ALL";b.h.Speed=165;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag6",a);a=newl();b=newl();b.h.displayName="Inventory_Bag_G";b.h.sellPrice=200;b.h.typeGen="aInventoryBag";b.h.ID=6;b.h.Type="INVENTORY_";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=20;b.h.Class="ALL";b.h.Speed=165;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag7",a);a=newl();b=newl();b.h.displayName="Inventory_Bag_H";b.h.sellPrice=200;b.h.typeGen="aInventoryBag";b.h.ID=7;b.h.Type="INVENTORY_";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=20;b.h.Class="ALL";b.h.Speed=165;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag8",a);a=newl();b=newl();b.h.displayName="Inventory_Bag_I";b.h.sellPrice=200;b.h.typeGen="aInventoryBag";b.h.ID=8;b.h.Type="INVENTORY_";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=20;b.h.Class="ALL";b.h.Speed=165;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag9",a);a=newl();b=newl();b.h.displayName="Inventory_Bag_U";b.h.sellPrice=200;b.h.typeGen="aInventoryBag";b.h.ID=20;b.h.Type="INVENTORY_";b.h.lvReqToCraft="4";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=150;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag21",a);a=newl();b=newl();b.h.displayName="Inventory_Bag_V";b.h.sellPrice=200;b.h.typeGen="aInventoryBag";b.h.ID=21;b.h.Type="INVENTORY_";b.h.lvReqToCraft="4";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=150;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag22",a);a=newl();b=newl();b.h.displayName="Inventory_Bag_W";b.h.sellPrice=200;b.h.typeGen="aInventoryBag";b.h.ID=22;b.h.Type="INVENTORY_";b.h.lvReqToCraft="4";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=150;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag23",a);a=newl();b=newl();b.h.displayName="Inventory_Bag_X";b.h.sellPrice=200;b.h.typeGen="aInventoryBag";b.h.ID=23;b.h.Type="INVENTORY_";b.h.lvReqToCraft="4";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=150;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag24",a);a=newl();b=newl();b.h.displayName="Inventory_Bag_Y";b.h.sellPrice=200;b.h.typeGen="aInventoryBag";b.h.ID=24;b.h.Type="INVENTORY_";b.h.lvReqToCraft="4";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=150;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag25",a);a=newl();b=newl();b.h.displayName="Inventory_Bag_Z";b.h.sellPrice=200;b.h.typeGen="aInventoryBag";b.h.ID=25;b.h.Type="INVENTORY_";b.h.lvReqToCraft="4";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=150;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag26",a);a=newl();b=newl();b.h.displayName="Snakeskinventory|Bag";b.h.sellPrice=1300;b.h.typeGen="aInventoryBag";b.h.ID=100;b.h.Type="INVENTORY_";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=120;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag100",a);a=newl();b=newl();b.h.displayName="Totally_Normal|and_not_fake_Bag";b.h.sellPrice=5e3;b.h.typeGen="aInventoryBag";b.h.ID=101;b.h.Type="INVENTORY_";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=-20;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag101",a);a=newl();b=newl();b.h.displayName="Blunderbag";b.h.sellPrice=2500;b.h.typeGen="aInventoryBag";b.h.ID=102;b.h.Type="INVENTORY_";b.h.lvReqToCraft="4";a.h.common=b;b=newl();b.h.lvReqToEquip=5;b.h.Class="ALL";b.h.Speed=-20;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag102",a);a=newl();b=newl();b.h.displayName="Sandy_Satchel";b.h.sellPrice=5e3;b.h.typeGen="aInventoryBag";b.h.ID=103;b.h.Type="INVENTORY_";b.h.lvReqToCraft="4";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag103",a);a=newl();b=newl();b.h.displayName="Bummo_Bag";b.h.sellPrice=24;b.h.typeGen="aInventoryBag";b.h.ID=104;b.h.Type="INVENTORY_";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag104",a);a=newl();b=newl();b.h.displayName="Capitalist_Case";b.h.sellPrice=2499;b.h.typeGen="aInventoryBag";b.h.ID=105;b.h.Type="INVENTORY_";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag105",a);a=newl();b=newl();b.h.displayName="Wealthy_Wallet";b.h.sellPrice=249999;b.h.typeGen="aInventoryBag";b.h.ID=106;b.h.Type="INVENTORY_";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=35;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag106",a);a=newl();b=newl();b.h.displayName="Prosperous_Pouch";b.h.sellPrice=24999999;b.h.typeGen="aInventoryBag";b.h.ID=107;b.h.Type="INVENTORY_";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=70;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag107",a);a=newl();b=newl();b.h.displayName="Sack_of_Success";b.h.sellPrice=2499999999;b.h.typeGen="aInventoryBag";b.h.ID=108;b.h.Type="INVENTORY_";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=120;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag108",a);a=newl();b=newl();b.h.displayName="Shivering_Sack";b.h.sellPrice=5e3;b.h.typeGen="aInventoryBag";b.h.ID=109;b.h.Type="INVENTORY_";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag109",a);a=newl();b=newl();b.h.displayName="Mamooth_Hide_Bag";b.h.sellPrice=5e3;b.h.typeGen="aInventoryBag";b.h.ID=110;b.h.Type="INVENTORY_";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=55;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag110",a);a=newl();b=newl();b.h.displayName="Peeper_Pouch";b.h.sellPrice=200;b.h.typeGen="aInventoryBag";b.h.ID=111;b.h.Type="INVENTORY_";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.lvReqToEquip=115;b.h.Class="ALL";b.h.Speed=150;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag111",a);a=newl();b=newl();b.h.displayName="4th_Anniversary|Bag";b.h.sellPrice=200;b.h.typeGen="aInventoryBag";b.h.ID=112;b.h.Type="INVENTORY_";b.h.lvReqToCraft="8";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=150;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag112",a);a=newl();b=newl();b.h.displayName="Treasure_Totebag";b.h.sellPrice=25e16;b.h.typeGen="aInventoryBag";b.h.ID=113;b.h.Type="INVENTORY_";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=140;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag113",a);a=newl();b=newl();b.h.displayName="Rucksack_of|Riches";b.h.sellPrice=2.5e25;b.h.typeGen="aInventoryBag";b.h.ID=114;b.h.Type="INVENTORY_";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=200;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag114",a);a=newl();b=newl();b.h.displayName="Loot_Luggage";b.h.sellPrice=2.5e35;b.h.typeGen="aInventoryBag";b.h.ID=115;b.h.Type="INVENTORY_";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=300;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvBag115",a);a=newl();b=newl();b.h.displayName="Storage_Chest_1";b.h.sellPrice=200;b.h.typeGen="aStorageChest";b.h.ID=0;b.h.Type="STORAGE_";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=330;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage1",a);a=newl();b=newl();b.h.displayName="Storage_Chest_2";b.h.sellPrice=200;b.h.typeGen="aStorageChest";b.h.ID=1;b.h.Type="STORAGE_";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=330;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage2",a);a=newl();b=newl();b.h.displayName="Storage_Chest_3";b.h.sellPrice=800;b.h.typeGen="aStorageChest";b.h.ID=2;b.h.Type="STORAGE_";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=330;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage3",a);a=newl();b=newl();b.h.displayName="Storage_Chest_4";b.h.sellPrice=1500;b.h.typeGen="aStorageChest";b.h.ID=3;b.h.Type="STORAGE_";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=330;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage4",a);a=newl();b=newl();b.h.displayName="Storage_Chest_5";b.h.sellPrice=1;b.h.typeGen="aStorageChest";b.h.ID=4;b.h.Type="STORAGE_";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=330;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage5",a);a=newl();b=newl();b.h.displayName="Storage_Chest_6";b.h.sellPrice=800;b.h.typeGen="aStorageChest";b.h.ID=5;b.h.Type="STORAGE_";b.h.lvReqToCraft="4";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=170;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage6",a);a=newl();b=newl();b.h.displayName="Storage_Chest_7";b.h.sellPrice=3500;b.h.typeGen="aStorageChest";b.h.ID=6;b.h.Type="STORAGE_";b.h.lvReqToCraft="4";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=170;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage7",a);a=newl();b=newl();b.h.displayName="Storage_Chest_8";b.h.sellPrice=5500;b.h.typeGen="aStorageChest";b.h.ID=7;b.h.Type="STORAGE_";b.h.lvReqToCraft="4";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=170;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage8",a);a=newl();b=newl();b.h.displayName="Storage_Chest_9";b.h.sellPrice=8900;b.h.typeGen="aStorageChest";b.h.ID=8;b.h.Type="STORAGE_";b.h.lvReqToCraft="4";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=170;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage9",a);a=newl();b=newl();b.h.displayName="Storage_Chest_10";b.h.sellPrice=25e3;b.h.typeGen="aStorageChest";b.h.ID=9;b.h.Type="STORAGE_";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage10",a);a=newl();b=newl();b.h.displayName="Storage_Chest_11";b.h.sellPrice=5e4;b.h.typeGen="aStorageChest";b.h.ID=10;b.h.Type="STORAGE_";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage11",a);a=newl();b=newl();b.h.displayName="Storage_Chest_12";b.h.sellPrice=7e3;b.h.typeGen="aStorageChest";b.h.ID=11;b.h.Type="STORAGE_";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage12",a);a=newl();b=newl();b.h.displayName="Storage_Chest_13";b.h.sellPrice=6e4;b.h.typeGen="aStorageChest";b.h.ID=12;b.h.Type="STORAGE_";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage13",a);a=newl();b=newl();b.h.displayName="Storage_Chest_14";b.h.sellPrice=1;b.h.typeGen="aStorageChest";b.h.ID=14;b.h.Type="STORAGE_";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage14",a);a=newl();b=newl();b.h.displayName="Storage_Chest_15";b.h.sellPrice=1e5;b.h.typeGen="aStorageChest";b.h.ID=13;b.h.Type="STORAGE_";b.h.lvReqToCraft="6";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=290;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage15",a);a=newl();b=newl();b.h.displayName="Storage_Chest_16";b.h.sellPrice=15e4;b.h.typeGen="aStorageChest";b.h.ID=15;b.h.Type="STORAGE_";b.h.lvReqToCraft="6";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=290;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage16",a);a=newl();b=newl();b.h.displayName="Storage_Chest_17";b.h.sellPrice=2e5;b.h.typeGen="aStorageChest";b.h.ID=16;b.h.Type="STORAGE_";b.h.lvReqToCraft="6";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=290;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage17",a);a=newl();b=newl();b.h.displayName="Storage_Chest_18";b.h.sellPrice=35e4;b.h.typeGen="aStorageChest";b.h.ID=17;b.h.Type="STORAGE_";b.h.lvReqToCraft="6";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=290;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage18",a);a=newl();b=newl();b.h.displayName="Storage_Chest_19";b.h.sellPrice=5e5;b.h.typeGen="aStorageChest";b.h.ID=18;b.h.Type="STORAGE_";b.h.lvReqToCraft="6";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=290;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage19",a);a=newl();b=newl();b.h.displayName="Storage_Chest_20";b.h.sellPrice=8e5;b.h.typeGen="aStorageChest";b.h.ID=19;b.h.Type="STORAGE_";b.h.lvReqToCraft="7";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=290;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage20",a);a=newl();b=newl();b.h.displayName="Storage_Chest_21";b.h.sellPrice=125e4;b.h.typeGen="aStorageChest";b.h.ID=20;b.h.Type="STORAGE_";b.h.lvReqToCraft="7";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=290;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage21",a);a=newl();b=newl();b.h.displayName="Storage_Chest_22";b.h.sellPrice=10;b.h.typeGen="aStorageChest";b.h.ID=21;b.h.Type="STORAGE_";b.h.lvReqToCraft="8";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=290;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage22",a);a=newl();b=newl();b.h.displayName="Storage_Chest_23";b.h.sellPrice=10;b.h.typeGen="aStorageChest";b.h.ID=22;b.h.Type="STORAGE_";b.h.lvReqToCraft="9";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=290;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage23",a);a=newl();b=newl();b.h.displayName="Storage_Chest_24";b.h.sellPrice=10;b.h.typeGen="aStorageChest";b.h.ID=23;b.h.Type="STORAGE_";b.h.lvReqToCraft="9";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=290;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage24",a);a=newl();b=newl();b.h.displayName="Storage_Chest_25";b.h.sellPrice=10;b.h.typeGen="aStorageChest";b.h.ID=24;b.h.Type="STORAGE_";b.h.lvReqToCraft="9";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=290;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage25",a);a=newl();b=newl();b.h.displayName="Storage_Chest_26";b.h.sellPrice=1e17;b.h.typeGen="aStorageChest";b.h.ID=25;b.h.Type="STORAGE_";b.h.lvReqToCraft="9";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=290;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage26",a);a=newl();b=newl();b.h.displayName="Storage_Chest_27";b.h.sellPrice=25e17;b.h.typeGen="aStorageChest";b.h.ID=26;b.h.Type="STORAGE_";b.h.lvReqToCraft="9";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=290;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage27",a);a=newl();b=newl();b.h.displayName="Storage_Chest_28";b.h.sellPrice=7e21;b.h.typeGen="aStorageChest";b.h.ID=27;b.h.Type="STORAGE_";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=290;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage28",a);a=newl();b=newl();b.h.displayName="Storage_Chest_29";b.h.sellPrice=7e29;b.h.typeGen="aStorageChest";b.h.ID=28;b.h.Type="STORAGE_";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=150;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage29",a);a=newl();b=newl();b.h.displayName="Storage_Chest_30";b.h.sellPrice=7e33;b.h.typeGen="aStorageChest";b.h.ID=29;b.h.Type="STORAGE_";b.h.lvReqToCraft="6";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=150;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage30",a);a=newl();b=newl();b.h.displayName="Storage_Chest_31";b.h.sellPrice=200;b.h.typeGen="aStorageChest";b.h.ID=30;b.h.Type="STORAGE_";b.h.lvReqToCraft="9";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=150;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage31",a);a=newl();b=newl();b.h.displayName="Storage_Chest_32";b.h.sellPrice=200;b.h.typeGen="aStorageChest";b.h.ID=31;b.h.Type="STORAGE_";b.h.lvReqToCraft="9";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=150;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage32",a);a=newl();b=newl();b.h.displayName="Storage_Chest_33";b.h.sellPrice=200;b.h.typeGen="aStorageChest";b.h.ID=32;b.h.Type="STORAGE_";b.h.lvReqToCraft="9";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=150;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage33",a);a=newl();b=newl();b.h.displayName="Storage_Chest_34";b.h.sellPrice=200;b.h.typeGen="aStorageChest";b.h.ID=33;b.h.Type="STORAGE_";b.h.lvReqToCraft="9";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=150;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage34",a);a=newl();b=newl();b.h.displayName="Storage_Chest_35";b.h.sellPrice=200;b.h.typeGen="aStorageChest";b.h.ID=34;b.h.Type="STORAGE_";b.h.lvReqToCraft="9";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=150;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage35",a);a=newl();b=newl();b.h.displayName="Storage_Chest_36";b.h.sellPrice=200;b.h.typeGen="aStorageChest";b.h.ID=35;b.h.Type="STORAGE_";b.h.lvReqToCraft="9";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=150;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage36",a);a=newl();b=newl();b.h.displayName="Storage_Chest_37";b.h.sellPrice=200;b.h.typeGen="aStorageChest";b.h.ID=36;b.h.Type="STORAGE_";b.h.lvReqToCraft="9";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=150;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage37",a);a=newl();b=newl();b.h.displayName="Storage_Chest_38";b.h.sellPrice=200;b.h.typeGen="aStorageChest";b.h.ID=37;b.h.Type="STORAGE_";b.h.lvReqToCraft="9";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=150;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage38",a);a=newl();b=newl();b.h.displayName="Storage_Chest_39";b.h.sellPrice=200;b.h.typeGen="aStorageChest";b.h.ID=38;b.h.Type="STORAGE_";b.h.lvReqToCraft="9";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=150;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage39",a);a=newl();b=newl();b.h.displayName="Storage_Chest_40";b.h.sellPrice=200;b.h.typeGen="aStorageChest";b.h.ID=39;b.h.Type="STORAGE_";b.h.lvReqToCraft="9";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=150;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage40",a);a=newl();b=newl();b.h.displayName="Storage_Chest_41";b.h.sellPrice=200;b.h.typeGen="aStorageChest";b.h.ID=40;b.h.Type="STORAGE_";b.h.lvReqToCraft="9";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=150;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage41",a);a=newl();b=newl();b.h.displayName="Storage_Chest_42";b.h.sellPrice=200;b.h.typeGen="aStorageChest";b.h.ID=41;b.h.Type="STORAGE_";b.h.lvReqToCraft="9";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=150;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorage42",a);a=newl();b=newl();b.h.displayName="Dank_Paypay_Chest";b.h.sellPrice=1e3;b.h.typeGen="aStorageChest";b.h.ID=100;b.h.Type="STORAGE_";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorageF",a);a=newl();b=newl();b.h.displayName="Gelatinous_Chest";b.h.sellPrice=1e3;b.h.typeGen="aStorageChest";b.h.ID=101;b.h.Type="STORAGE_";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorageS",a);a=newl();b=newl();b.h.displayName="Cheesy_Chest";b.h.sellPrice=1e3;b.h.typeGen="aStorageChest";b.h.ID=102;b.h.Type="STORAGE_";b.h.lvReqToCraft="4";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorageC",a);a=newl();b=newl();b.h.displayName="Woodlin_Chest";b.h.sellPrice=1e3;b.h.typeGen="aStorageChest";b.h.ID=103;b.h.Type="STORAGE_";b.h.lvReqToCraft="4";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorageD",a);a=newl();b=newl();b.h.displayName="Ninja_Chest";b.h.sellPrice=1e3;b.h.typeGen="aStorageChest";b.h.ID=104;b.h.Type="STORAGE_";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorageN",a);a=newl();b=newl();b.h.displayName="Holiday_Chest";b.h.sellPrice=1e3;b.h.typeGen="aStorageChest";b.h.ID=105;b.h.Type="STORAGE_";b.h.lvReqToCraft="16";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorageH",a);a=newl();b=newl();b.h.displayName="Valenslime_Chest";b.h.sellPrice=1e3;b.h.typeGen="aStorageChest";b.h.ID=106;b.h.Type="STORAGE_";b.h.lvReqToCraft="16";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorageL",a);a=newl();b=newl();b.h.displayName="Buried_Treasure|Chest";b.h.sellPrice=1e3;b.h.typeGen="aStorageChest";b.h.ID=107;b.h.Type="STORAGE_";b.h.lvReqToCraft="16";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("InvStorageZ",a);a=newl();b=newl();b.h.displayName="Copper_Twine";b.h.sellPrice=3500;b.h.typeGen="dFishToolkit";b.h.ID=1;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Line1",a);a=newl();b=newl();b.h.displayName="Silver_Twine";b.h.sellPrice=50;b.h.typeGen="dFishToolkit";b.h.ID=2;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Line2",a);a=newl();b=newl();b.h.displayName="Gold_Twine";b.h.sellPrice=50;b.h.typeGen="dFishToolkit";b.h.ID=3;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Line3",a);a=newl();b=newl();b.h.displayName="Platinum_Twine";b.h.sellPrice=50;b.h.typeGen="dFishToolkit";b.h.ID=4;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Line4",a);a=newl();b=newl();b.h.displayName="Leafy_Vines";b.h.sellPrice=7500;b.h.typeGen="dFishToolkit";b.h.ID=5;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Line5",a);a=newl();b=newl();b.h.displayName="Fun_Flags";b.h.sellPrice=50;b.h.typeGen="dFishToolkit";b.h.ID=6;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Line6",a);a=newl();b=newl();b.h.displayName="Electrical_Wiring";b.h.sellPrice=50;b.h.typeGen="dFishToolkit";b.h.ID=7;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Line7",a);a=newl();b=newl();b.h.displayName="Wiener_Links";b.h.sellPrice=50;b.h.typeGen="dFishToolkit";b.h.ID=8;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Line8",a);a=newl();b=newl();b.h.displayName="Zeus_Gon_Fishin";b.h.sellPrice=50;b.h.typeGen="dFishToolkit";b.h.ID=9;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Line9",a);a=newl();b=newl();b.h.displayName="Needledrop";b.h.sellPrice=15e3;b.h.typeGen="dFishToolkit";b.h.ID=10;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!_Also_turns_your_character_into_Idleon's_busiest_music_nerd_for_0.01_seconds.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Line10",a);a=newl();b=newl();b.h.displayName="Scripticus|Spoons";b.h.sellPrice=50;b.h.typeGen="dFishToolkit";b.h.ID=11;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Line11",a);a=newl();b=newl();b.h.displayName="Its_a_Boy|Celebration";b.h.sellPrice=50;b.h.typeGen="dFishToolkit";b.h.ID=12;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Line12",a);a=newl();b=newl();b.h.displayName="Its_a_Girl|Celebration";b.h.sellPrice=50;b.h.typeGen="dFishToolkit";b.h.ID=13;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Line13",a);a=newl();b=newl();b.h.displayName="Its_Alright|Celebration";b.h.sellPrice=50;b.h.typeGen="dFishToolkit";b.h.ID=14;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Line14",a);a=newl();b=newl();b.h.displayName="Wormie_Weight";b.h.sellPrice=5e3;b.h.typeGen="dFishToolkit";b.h.ID=1;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Weight1",a);a=newl();b=newl();b.h.displayName="Iron_Hook";b.h.sellPrice=50;b.h.typeGen="dFishToolkit";b.h.ID=2;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Weight2",a);a=newl();b=newl();b.h.displayName="Basic_Bobber";b.h.sellPrice=50;b.h.typeGen="dFishToolkit";b.h.ID=3;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Weight3",a);a=newl();b=newl();b.h.displayName="Dualhook_Prongs";b.h.sellPrice=50;b.h.typeGen="dFishToolkit";b.h.ID=4;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Weight4",a);a=newl();b=newl();b.h.displayName="One_Pound_of|Steel";b.h.sellPrice=1e4;b.h.typeGen="dFishToolkit";b.h.ID=5;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Weight5",a);a=newl();b=newl();b.h.displayName="One_Pound_of|Feathers";b.h.sellPrice=50;b.h.typeGen="dFishToolkit";b.h.ID=6;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Weight6",a);a=newl();b=newl();b.h.displayName="Massless_Unit_for|Physics_Questions";b.h.sellPrice=50;b.h.typeGen="dFishToolkit";b.h.ID=7;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Weight7",a);a=newl();b=newl();b.h.displayName="Literal_Elephant";b.h.sellPrice=50;b.h.typeGen="dFishToolkit";b.h.ID=8;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Weight8",a);a=newl();b=newl();b.h.displayName="Valve_Patented|Circle_Thingies";b.h.sellPrice=50;b.h.typeGen="dFishToolkit";b.h.ID=9;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Weight9",a);a=newl();b=newl();b.h.displayName="Dynamite";b.h.sellPrice=17500;b.h.typeGen="dFishToolkit";b.h.ID=10;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Weight10",a);a=newl();b=newl();b.h.displayName="Not_Dynamite";b.h.sellPrice=55e3;b.h.typeGen="dFishToolkit";b.h.ID=11;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!_Also,_the_name_is_technically_true.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Weight11",a);a=newl();b=newl();b.h.displayName="Triple_Threat";b.h.sellPrice=50;b.h.typeGen="dFishToolkit";b.h.ID=12;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Weight12",a);a=newl();b=newl();b.h.displayName="Crash_Box";b.h.sellPrice=50;b.h.typeGen="dFishToolkit";b.h.ID=13;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!_Woah._Woah!_WOAAHHH!!!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Weight13",a);a=newl();b=newl();b.h.displayName="Fat_Albert";b.h.sellPrice=50;b.h.typeGen="dFishToolkit";b.h.ID=14;b.h.Type="FISHING_ACCESSORY";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_this_accessory_to_it_to_your_fishing_toolkit,_where_it_can_be_accessed_by_all_characters!_Oh_Albert,_what_were_you_thinking?_Seriously,_I_genuinely_can't_comprehend_what_you_were_thinking_haha!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Weight14",a);a=newl();b=newl();b.h.displayName="Cosmic_Storage_Chest";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CHEST_RECEIPT";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="This_item_does_nothing,_you_got_the_9_Storage_Slots_instantly_when_you_bought_this._Consider_this_a_receipt_of_purchase,_you_can_throw_it_away.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("InvStorage99",a);a=newl();b=newl();b.h.displayName="Spice";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SPICE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Spicey";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Spice0",a);a=newl();b=newl();b.h.displayName="Spice";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SPICE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Spicey";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Spice6",a);a=newl();b=newl();b.h.displayName="Strung_Jewels";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SPICE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Spicey";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Spice9",a);a=newl();b=newl();b.h.displayName="Strung_Jewels";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SAIL_TREASURE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Sail_Treasure";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("SailTr1",a);a=newl();b=newl();b.h.displayName="Strung_Jewels";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SAIL_TREASURE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Sail_Treasure";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("SailTr9",a);a=newl();b=newl();b.h.displayName="Strung_Jewels";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SAIL_TREASURE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Sail_Treasure";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("SailTr11",a);a=newl();b=newl();b.h.displayName="Strung_Jewels";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SAIL_TREASURE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Sail_Treasure";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("SailTr13",a);a=newl();b=newl();b.h.displayName="Strung_Jewels";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SAIL_TREASURE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Sail_Treasure";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("SailTr20",a);a=newl();b=newl();b.h.displayName="Strung_Jewels";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SAIL_TREASURE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Sail_Treasure";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("SailTr24",a);a=newl();b=newl();b.h.displayName="Strung_Jewels";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SAIL_TREASURE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Sail_Treasure";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("SailTr28",a);a=newl();b=newl();b.h.displayName="Bits";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="Bits";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Bits";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Bits",a);a=newl();b=newl();b.h.displayName="Error_Item";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SAIL_TREASURE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Idk_how_you_got_this,_but_it_doesn't_do_anything._Just_drop_it,_or_keep_it_if_you_want_1_less_inventory_space.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("W6item0",a);a=newl();b=newl();b.h.displayName="Strung_Jewels";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SAIL_TREASURE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Sail_Treasure";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("W6item1",a);a=newl();b=newl();b.h.displayName="Strung_Jewels";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SAIL_TREASURE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Sail_Treasure";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("W6item2",a);a=newl();b=newl();b.h.displayName="Strung_Jewels";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SAIL_TREASURE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Sail_Treasure";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("W6item3",a);a=newl();b=newl();b.h.displayName="Strung_Jewels";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SAIL_TREASURE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Sail_Treasure";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("W6item4",a);a=newl();b=newl();b.h.displayName="Strung_Jewels";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SAIL_TREASURE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Sail_Treasure";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("W6item5",a);a=newl();b=newl();b.h.displayName="Strung_Jewels";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SAIL_TREASURE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Sail_Treasure";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("W6item6",a);a=newl();b=newl();b.h.displayName="Strung_Jewels";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SAIL_TREASURE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Sail_Treasure";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("W6item7",a);a=newl();b=newl();b.h.displayName="Strung_Jewels";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SAIL_TREASURE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Sail_Treasure";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("W6item8",a);a=newl();b=newl();b.h.displayName="Strung_Jewels";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SAIL_TREASURE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Sail_Treasure";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("W6item9",a);a=newl();b=newl();b.h.displayName="Strung_Jewels";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SAIL_TREASURE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Sail_Treasure";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("W6item10",a);a=newl();b=newl();b.h.displayName="Strung_Jewels";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SAIL_TREASURE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Sail_Treasure";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("W7item0",a);a=newl();b=newl();b.h.displayName="Strung_Jewels";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SAIL_TREASURE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Sail_Treasure";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("W7item1",a);a=newl();b=newl();b.h.displayName="Strung_Jewels";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SAIL_TREASURE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Sail_Treasure";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("W7item2",a);a=newl();b=newl();b.h.displayName="Strung_Jewels";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SAIL_TREASURE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Sail_Treasure";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("W7item3",a);a=newl();b=newl();b.h.displayName="Cooking_Ladle";b.h.sellPrice=1;b.h.typeGen="dTimeCandy";b.h.ID=1;b.h.Type="KITCHEN_LADLE";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_boost_all_your_kitchens_ahead_by_1_hour_for_each_ladle_in_this_stack._The_entire_stack_will_be_used_up_when_you_do.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Ladle",a);a=newl();b=newl();b.h.displayName="Mob_Egg";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="MOB_EGG";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_instantly_incubate_eggs_for_your_nest_in_World_4._It'll_only_use_up_eggs_that_you_have_space_to_carry,_dont_worry_about_wasting_these!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("PetEgg",a);a=newl();b=newl();b.h.displayName="Grassy_Gene|Spiral";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="You_shouldn't_be_seeing_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Genetic0",a);a=newl();b=newl();b.h.displayName="YumYumy_Gene|Spiral";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="You_shouldn't_be_seeing_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Genetic1",a);a=newl();b=newl();b.h.displayName="Tundric_Gene|Spiral";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="You_shouldn't_be_seeing_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Genetic2",a);a=newl();b=newl();b.h.displayName="Nebulous_Gene|Spiral";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="You_shouldn't_be_seeing_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Genetic3",a);a=newl();b=newl();b.h.displayName="Redox_Salts";b.h.sellPrice=100;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="REFINERY_SALTS";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="It's_red,_and_boring.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Refinery1",a);a=newl();b=newl();b.h.displayName="Explosive_Salts";b.h.sellPrice=100;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="REFINERY_SALTS";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="It's_orange,_and_explodey.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Refinery2",a);a=newl();b=newl();b.h.displayName="Spontaneity_Salts";b.h.sellPrice=100;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="REFINERY_SALTS";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="It's_blue,_and_currently_has_a_flight_scheduled_to_Tahiti_that_it_booked_earlier_this_morning_on_a_whim.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Refinery3",a);a=newl();b=newl();b.h.displayName="Dioxide_Synthesis";b.h.sellPrice=100;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="REFINERY_SALTS";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="It's_green,_and_carbony.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Refinery4",a);a=newl();b=newl();b.h.displayName="Purple_Salt";b.h.sellPrice=100;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="REFINERY_SALTS";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="It's_purple,_and_confusing.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Refinery5",a);a=newl();b=newl();b.h.displayName="Nullo_Salt";b.h.sellPrice=100;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="REFINERY_SALTS";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="It's_grey,_and_doesn't_exist.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Refinery6",a);a=newl();b=newl();b.h.displayName="Crosslink_Salt";b.h.sellPrice=100;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="REFINERY_SALTS";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="It's_grey,_and_doesn't_exist.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Refinery7",a);a=newl();b=newl();b.h.displayName="Propagated_Salt";b.h.sellPrice=100;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="REFINERY_SALTS";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="It's_grey,_and_doesn't_exist.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Refinery8",a);a=newl();b=newl();b.h.displayName="Anionic_Salt";b.h.sellPrice=100;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="REFINERY_SALTS";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="It's_grey,_and_doesn't_exist.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Refinery9",a);a=newl();b=newl();b.h.displayName="Thread";b.h.sellPrice=3;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MATERIAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="It's_like_string_cheese,_but_without";b.h.desc_line2="cheese.";b.h.desc_line3="GET_THESE_FROM_THE_'PRODUCE'_TAB";b.h.desc_line4="HERE_IN_THE_ANVIL!";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CraftMat1",a);a=newl();b=newl();b.h.displayName="Crimson_String";b.h.sellPrice=1;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MATERIAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="I_think_Scripticus_forgot_to_take";b.h.desc_line2="out_his..._spoon?_You_may_want_to";b.h.desc_line3="give_that_back.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CraftMat2",a);a=newl();b=newl();b.h.displayName="Cue_Tape";b.h.sellPrice=3;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MATERIAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Ohh_that's_why_it's_called_Cue_tape!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CraftMat3",a);a=newl();b=newl();b.h.displayName="Trusty_Nails";b.h.sellPrice=12;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MATERIAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Twice_the_nailage,_so_you_can_feel";b.h.desc_line2="even_dumber_when_you_still_end_up";b.h.desc_line3="hitting_your_thumb_instead!";b.h.desc_line4="CRAFT_THESE_IN_THE_'PRODUCE'";b.h.desc_line5="TAB_IN_ANVIL!";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CraftMat5",a);a=newl();b=newl();b.h.displayName="Boring_Brick";b.h.sellPrice=25;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MATERIAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Go_get_your_shovel...";b.h.desc_line2="And_we'll_dig_a_deep_hole...";b.h.desc_line3="To_gain_a_skill_level...";b.h.desc_line4="To_gain_a_skill_level...";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CraftMat6",a);a=newl();b=newl();b.h.displayName="Chain_Link";b.h.sellPrice=40;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MATERIAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Better_keep_an_eye_on_this_or_it";b.h.desc_line2="might_try_to_leave_your_inventory";b.h.desc_line3="to_go_save_Chain_Zelda!";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CraftMat7",a);a=newl();b=newl();b.h.displayName="Leather_Hide";b.h.sellPrice=60;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MATERIAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="I_mean_come_on,_would_this_really_be_a_Fantasy_MMO_if_it_didn't_have_a_leather_material_item?";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CraftMat9",a);a=newl();b=newl();b.h.displayName="Pinion_Spur";b.h.sellPrice=80;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MATERIAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="The_big_one_is_the_Spur.";b.h.desc_line2="The_puny_one_is_the_Pinion.";b.h.desc_line3="Have_fun_bragging_in_class_when_you";b.h.desc_line4="get_this_question_right_on_a_test.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CraftMat8",a);a=newl();b=newl();b.h.displayName="Lugi_Bracket";b.h.sellPrice=100;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MATERIAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Hey_look_Mario!_I_have-a_my_own_reference_in_the_game!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CraftMat10",a);a=newl();b=newl();b.h.displayName="Purple_Screw";b.h.sellPrice=120;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MATERIAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Having_trouble_unscrewing_this?_Just_put_a_rubber_band_inbetween_your_screwdriver_and_the_screw_head!_This_is_an_ANVIL_PRODUCTION_ITEM.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CraftMat11",a);a=newl();b=newl();b.h.displayName="Thingymabob";b.h.sellPrice=1;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MATERIAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Boi-oi-oi-oi-oi-ing!_This_is_an_ANVIL_PRODUCTION_ITEM.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CraftMat12",a);a=newl();b=newl();b.h.displayName="Tangled_Cords";b.h.sellPrice=1;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MATERIAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Real_talk,_I_once_had_to_untangle_some_cords_at_school,_and_I_couldn't_do_it._That_was_11_years_ago..._This_is_an_ANVIL_PRODUCTION_ITEM.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CraftMat13",a);a=newl();b=newl();b.h.displayName="PVC_Pipe";b.h.sellPrice=1;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MATERIAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="PVC_stands_for_Proton_Volumetric_Containment,_hence_why_they're_so_commonly_used_in_industrial_engineering!_This_is_an_ANVIL_PRODUCTION_ITEM.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CraftMat14",a);a=newl();b=newl();b.h.displayName="Filler";b.h.sellPrice=1;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MATERIAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Filler_text_lol";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CraftMat15",a);a=newl();b=newl();b.h.displayName="Filler";b.h.sellPrice=1;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MATERIAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Filler_text_lol";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CraftMat16",a);a=newl();b=newl();b.h.displayName="Filler";b.h.sellPrice=1;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MATERIAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Filler_text_lol";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CraftMat17",a);a=newl();b=newl();b.h.displayName="FILLER";b.h.sellPrice=1e3;b.h.typeGen="dCurrency";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="45";a.h.common=b;b=newl();b.h.desc_line1="eafwef";b.h.desc_line2="weafwef!";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken8",a);a=newl();b=newl();b.h.displayName="Blunderhills_NPC|Completion_Token";b.h.sellPrice=3e4;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.desc_line1="Made_up_of_all_the_tokens_that_you";b.h.desc_line2="collected_after_completing_an";b.h.desc_line3="NPC's_entire_questline.";b.h.desc_line4="";b.h.desc_line5="DONT_SELL_THIS_ITEM";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("BadgeG1",a);a=newl();b=newl();b.h.displayName="Blunder_Skills|Completion_Token";b.h.sellPrice=25e3;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_mastered_the_art";b.h.desc_line2="of_the_Mining,_Smithing,_and_";b.h.desc_line3="Choppin_skills.";b.h.desc_line4="DONT_SELL_THIS_ITEM";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("BadgeG2",a);a=newl();b=newl();b.h.displayName="Blunderhills_Misc|Completion_Token";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_collected_all";b.h.desc_line2="the_coolest_and_rarest_items_that";b.h.desc_line3="Blunder_Hills_has_to_offer!";b.h.desc_line4="DONT_SELL_THIS_ITEM";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("BadgeG3",a);a=newl();b=newl();b.h.displayName="Yumyum_Desert_NPC|Completion_Token";b.h.sellPrice=3e4;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.desc_line1="Made_up_of_all_the_tokens_that_you";b.h.desc_line2="collected_after_completing_an";b.h.desc_line3="NPC's_entire_questline.";b.h.desc_line4="DONT_SELL_THIS_ITEM";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("BadgeD1",a);a=newl();b=newl();b.h.displayName="Yumyum_Skills|Completion_Token";b.h.sellPrice=25e3;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_mastered_the_art";b.h.desc_line2="of_the_Fishing,_Alchemy,_and_";b.h.desc_line3="Catching_skills.";b.h.desc_line4="DONT_SELL_THIS_ITEM";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("BadgeD2",a);a=newl();b=newl();b.h.displayName="Yumyum_Misc|Completion_Token";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_collected_all";b.h.desc_line2="the_coolest_and_rarest_items_that";b.h.desc_line3="Yumyum_Desert_has_to_offer!";b.h.desc_line4="DONT_SELL_THIS_ITEM";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("BadgeD3",a);a=newl();b=newl();b.h.displayName="Easy_Blunderhills|NPC_Token";b.h.sellPrice=2800;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Made_up_of_the_tokens_from";b.h.desc_line2="all_of_the_Blunder_NPCs_whose";b.h.desc_line3="quests_are_easiest_to_complete.";b.h.desc_line4="DONT_SELL_THIS_ITEM";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken1",a);a=newl();b=newl();b.h.displayName="Med_Blunderhills|NPC_Token";b.h.sellPrice=6e3;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="30";a.h.common=b;b=newl();b.h.desc_line1="Made_up_of_the_tokens_from";b.h.desc_line2="all_of_the_Blunder_NPCs_whose";b.h.desc_line3="quests_are_tough_to_complete.";b.h.desc_line4="DONT_SELL_THIS_ITEM";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken2",a);a=newl();b=newl();b.h.displayName="Hard_Blunderhills|NPC_Token";b.h.sellPrice=16e3;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="45";a.h.common=b;b=newl();b.h.desc_line1="Made_up_of_the_tokens_from";b.h.desc_line2="all_of_the_Blunder_NPCs_whose";b.h.desc_line3="quests_are_hardest_to_complete.";b.h.desc_line4="DONT_SELL_THIS_ITEM";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken3",a);a=newl();b=newl();b.h.displayName="Woodsman_Token";b.h.sellPrice=700;b.h.typeGen="dCurrency";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all";b.h.desc_line2="of_the_Woodsman's_quests!";b.h.desc_line3="Hold_down_to_add_to_your_token_bag";b.h.desc_line4="found_in_Storage_Info.";b.h.desc_line5="Open_items,_look_at_the_top_left.";b.h.desc_line6="DONT_SELL_THIS_ITEM";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken5",a);a=newl();b=newl();b.h.displayName="Glumlee_Token";b.h.sellPrice=700;b.h.typeGen="dCurrency";b.h.ID=1;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all";b.h.desc_line2="of_Glumlee's_quests!";b.h.desc_line3="Hold_down_to_add_to_your_token_bag";b.h.desc_line4="found_in_Storage_Info.";b.h.desc_line5="Open_items,_look_at_the_top_left.";b.h.desc_line6="DONT_SELL_THIS_ITEM";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken6",a);a=newl();b=newl();b.h.displayName="Stiltzcho_Token";b.h.sellPrice=700;b.h.typeGen="dCurrency";b.h.ID=2;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all";b.h.desc_line2="of_Stiltzcho's_main_quests!";b.h.desc_line3="Hold_down_to_add_to_your_token_bag";b.h.desc_line4="found_in_Storage_Info.";b.h.desc_line5="Open_items,_look_at_the_top_left.";b.h.desc_line6="DONT_SELL_THIS_ITEM";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken4",a);a=newl();b=newl();b.h.displayName="Funguy_Token";b.h.sellPrice=1500;b.h.typeGen="dCurrency";b.h.ID=3;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all";b.h.desc_line2="of_Funguy's_quests!";b.h.desc_line3="Hold_down_to_add_to_your_token_bag";b.h.desc_line4="found_in_Storage_Info.";b.h.desc_line5="Open_items,_look_at_the_top_left.";b.h.desc_line6="DONT_SELL_THIS_ITEM";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken9",a);a=newl();b=newl();b.h.displayName="Krunk_Token";b.h.sellPrice=1500;b.h.typeGen="dCurrency";b.h.ID=4;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all";b.h.desc_line2="of_Krunk's_quests!";b.h.desc_line3="Hold_down_to_add_to_your_token_bag";b.h.desc_line4="found_in_Storage_Info.";b.h.desc_line5="DONT_SELL_THIS_ITEM";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken10",a);a=newl();b=newl();b.h.displayName="Tiki_Chief_Token";b.h.sellPrice=1500;b.h.typeGen="dCurrency";b.h.ID=5;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all";b.h.desc_line2="of_Tiki_Chief's_quests!";b.h.desc_line3="Hold_down_to_add_to_your_token_bag";b.h.desc_line4="found_in_Storage_Info.";b.h.desc_line5="DONT_SELL_THIS_ITEM";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken11",a);a=newl();b=newl();b.h.displayName="Dog_Bone_Token";b.h.sellPrice=4e3;b.h.typeGen="dCurrency";b.h.ID=6;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all";b.h.desc_line2="of_Dog_Bone's_quests!";b.h.desc_line3="Hold_down_to_add_to_your_token_bag";b.h.desc_line4="found_in_Storage_Info.";b.h.desc_line5="DONT_SELL_THIS_ITEM";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken13",a);a=newl();b=newl();b.h.displayName="Papua_Piggea|Token";b.h.sellPrice=700;b.h.typeGen="dCurrency";b.h.ID=7;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all";b.h.desc_line2="of_Papua_Piggea's_quests!";b.h.desc_line3="Hold_down_to_add_to_your_token_bag";b.h.desc_line4="found_in_Storage_Info.";b.h.desc_line5="DONT_SELL_THIS_ITEM";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken7",a);a=newl();b=newl();b.h.displayName="Picnic_Token";b.h.sellPrice=1;b.h.typeGen="dCurrency";b.h.ID=8;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_were_able_to";b.h.desc_line2="feed_a_blobulyte_all_day._If_you";b.h.desc_line3="bring_30_of_these_to_the_Picnic";b.h.desc_line4="Stowaway,_you'll_get_a_Trophy!";b.h.desc_line5="Hold_down_to_add_to_your_token_bag";b.h.desc_line6="DONT_SELL_THIS_ITEM";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Quest9",a);a=newl();b=newl();b.h.displayName="TP_Pete_Token";b.h.sellPrice=4e3;b.h.typeGen="dCurrency";b.h.ID=9;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all";b.h.desc_line2="of_TP_Pete's_quests!";b.h.desc_line3="Hold_down_to_add_to_your_token_bag";b.h.desc_line4="found_in_Storage_Info.";b.h.desc_line5="DONT_SELL_THIS_ITEM";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken15",a);a=newl();b=newl();b.h.displayName="Sproutinald_Token";b.h.sellPrice=4e3;b.h.typeGen="dCurrency";b.h.ID=10;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all";b.h.desc_line2="of_Sproutinald's_quests!";b.h.desc_line3="Hold_down_to_add_to_your_token_bag";b.h.desc_line4="found_in_Storage_Info.";b.h.desc_line5="DONT_SELL_THIS_ITEM";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken12",a);a=newl();b=newl();b.h.displayName="Dazey_Token";b.h.sellPrice=4e3;b.h.typeGen="dCurrency";b.h.ID=11;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all";b.h.desc_line2="of_Dazey's_quests!";b.h.desc_line3="Hold_down_to_add_to_your_token_bag";b.h.desc_line4="found_in_Storage_Info.";b.h.desc_line5="DONT_SELL_THIS_ITEM";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken14",a);a=newl();b=newl();b.h.displayName="Bandit_Bob_Token";b.h.sellPrice=4e3;b.h.typeGen="dCurrency";b.h.ID=12;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all";b.h.desc_line2="of_Bandit_Bob's_quests!";b.h.desc_line3="Hold_down_to_add_to_your_token_bag";b.h.desc_line4="found_in_Storage_Info.";b.h.desc_line5="DONT_SELL_THIS_ITEM";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken16",a);a=newl();b=newl();b.h.displayName="Snake_Jar_Token";b.h.sellPrice=4e3;b.h.typeGen="dCurrency";b.h.ID=13;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all";b.h.desc_line2="of_Snake_Jar's_quests!";b.h.desc_line3="Hold_down_to_add_to_your_token_bag";b.h.desc_line4="found_in_Storage_Info.";b.h.desc_line5="DONT_SELL_THIS_ITEM";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken17",a);a=newl();b=newl();b.h.displayName="Whattso_Token";b.h.sellPrice=4e3;b.h.typeGen="dCurrency";b.h.ID=14;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all";b.h.desc_line2="of_Whattso's_quests!";b.h.desc_line3="Hold_down_to_add_to_your_token_bag";b.h.desc_line4="found_in_Storage_Info.";b.h.desc_line5="DONT_SELL_THIS_ITEM";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken18",a);a=newl();b=newl();b.h.displayName="Cowbo_Jones_Token";b.h.sellPrice=4e3;b.h.typeGen="dCurrency";b.h.ID=15;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all";b.h.desc_line2="of_Cowbo_Jones's_quests!";b.h.desc_line3="Hold_down_to_add_to_your_token_bag";b.h.desc_line4="found_in_Storage_Info.";b.h.desc_line5="DONT_SELL_THIS_ITEM";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken19",a);a=newl();b=newl();b.h.displayName="Carpetiem_Token";b.h.sellPrice=4e3;b.h.typeGen="dCurrency";b.h.ID=16;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all";b.h.desc_line2="of_Carpetiem's_quests!";b.h.desc_line3="Hold_down_to_add_to_your_token_bag";b.h.desc_line4="found_in_Storage_Info.";b.h.desc_line5="DONT_SELL_THIS_ITEM";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken20",a);a=newl();b=newl();b.h.displayName="Goldric_Token";b.h.sellPrice=4e3;b.h.typeGen="dCurrency";b.h.ID=17;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all";b.h.desc_line2="of_Goldric's_quests!";b.h.desc_line3="Hold_down_to_add_to_your_token_bag";b.h.desc_line4="found_in_Storage_Info.";b.h.desc_line5="DONT_SELL_THIS_ITEM";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken21",a);a=newl();b=newl();b.h.displayName="Cattleprod_Token";b.h.sellPrice=155e3;b.h.typeGen="dCurrency";b.h.ID=18;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_Cattleprod_is_a_little_brat_of_a_pig..._like,_he_seriously_went_and_SOLD_his_own_token_to_the_store???_DONT_SELL_THIS_ITEM";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken27",a);a=newl();b=newl();b.h.displayName="Fishpaste_Token";b.h.sellPrice=4e3;b.h.typeGen="dCurrency";b.h.ID=19;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all";b.h.desc_line2="of_Fishpaste's_quests!";b.h.desc_line3="Hold_down_to_add_to_your_token_bag";b.h.desc_line4="found_in_Storage_Info.";b.h.desc_line5="DONT_SELL_THIS_ITEM";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken22",a);a=newl();b=newl();b.h.displayName="Loominadi_Token";b.h.sellPrice=4e3;b.h.typeGen="dCurrency";b.h.ID=20;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all";b.h.desc_line2="of_Loominadi's_quests!";b.h.desc_line3="Hold_down_to_add_to_your_token_bag";b.h.desc_line4="found_in_Storage_Info.";b.h.desc_line5="DONT_SELL_THIS_ITEM";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken24",a);a=newl();b=newl();b.h.displayName="Djonnut_Token";b.h.sellPrice=4e3;b.h.typeGen="dCurrency";b.h.ID=21;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all";b.h.desc_line2="of_Djonnut's_quests!";b.h.desc_line3="Hold_down_to_add_to_your_token_bag";b.h.desc_line4="found_in_Storage_Info.";b.h.desc_line5="DONT_SELL_THIS_ITEM";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken25",a);a=newl();b=newl();b.h.displayName="Scubidew_Token";b.h.sellPrice=4e3;b.h.typeGen="dCurrency";b.h.ID=22;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all_of";b.h.desc_line2="_Scubidew's_quests!_Well,_most_of_";b.h.desc_line3="them,_at_least._";b.h.desc_line4="Hold_down_to_add_to_your_token_pouch";b.h.desc_line5="found_in_Storage_Info.";b.h.desc_line6="DONT_SELL_THIS_ITEM";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken26",a);a=newl();b=newl();b.h.displayName="Wellington_Token";b.h.sellPrice=4e3;b.h.typeGen="dCurrency";b.h.ID=23;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all";b.h.desc_line2="of_Wellington's_quests!";b.h.desc_line3="Hold_down_to_add_to_your_token_bag";b.h.desc_line4="found_in_Storage_Info.";b.h.desc_line5="DONT_SELL_THIS_ITEM";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken23",a);a=newl();b=newl();b.h.displayName="Easy_Yumyum_Dez|NPC_Token";b.h.sellPrice=2800;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Made_up_of_the_tokens_from";b.h.desc_line2="all_of_the_Yumyum_NPCs_whose";b.h.desc_line3="quests_are_easiest_to_complete.";b.h.desc_line4="DONT_SELL_THIS_ITEM";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken28",a);a=newl();b=newl();b.h.displayName="Med_Yumyum_Dez|NPC_Token";b.h.sellPrice=6e3;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="30";a.h.common=b;b=newl();b.h.desc_line1="Made_up_of_the_tokens_from";b.h.desc_line2="all_of_the_Yumyum_NPCs_whose";b.h.desc_line3="quests_are_tough_to_complete.";b.h.desc_line4="DONT_SELL_THIS_ITEM";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken29",a);a=newl();b=newl();b.h.displayName="Hard_Yumyum_Dez|NPC_Token";b.h.sellPrice=16e3;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="45";a.h.common=b;b=newl();b.h.desc_line1="Made_up_of_the_tokens_from";b.h.desc_line2="all_of_the_Yumyum_NPCs_whose";b.h.desc_line3="quests_are_hardest_to_complete.";b.h.desc_line4="DONT_SELL_THIS_ITEM";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken30",a);a=newl();b=newl();b.h.displayName="Lonely_Hunter|Token";b.h.sellPrice=4e3;b.h.typeGen="dCurrency";b.h.ID=25;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all_of_the_Lonely_Hunter's_quests!_Hold_down_to_add_to_your_token_bag,_found_in_Storage_Info._DONT_SELL_THIS_ITEM";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken31",a);a=newl();b=newl();b.h.displayName="Hoggi_Token";b.h.sellPrice=4e3;b.h.typeGen="dCurrency";b.h.ID=24;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all_of_Hoggindaz's_quests!_Hold_down_to_add_to_your_token_bag,_found_in_Storage_Info._DONT_SELL_THIS_ITEM";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken32",a);a=newl();b=newl();b.h.displayName="Bellows_Token";b.h.sellPrice=4e3;b.h.typeGen="dCurrency";b.h.ID=30;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all_of_Bellows'_quests!_Hold_down_to_add_to_your_token_bag,_found_in_Storage_Info._DONT_SELL_THIS_ITEM";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken33",a);a=newl();b=newl();b.h.displayName="Snouts_Token";b.h.sellPrice=4e3;b.h.typeGen="dCurrency";b.h.ID=26;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all_of_Snouts'_quests!_Hold_down_to_add_to_your_token_bag,_found_in_Storage_Info._DONT_SELL_THIS_ITEM";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken34",a);a=newl();b=newl();b.h.displayName="Shuvelle_Token";b.h.sellPrice=4e3;b.h.typeGen="dCurrency";b.h.ID=27;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all_of_Shuvelle's_quests!_Hold_down_to_add_to_your_token_bag,_found_in_Storage_Info._DONT_SELL_THIS_ITEM";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken35",a);a=newl();b=newl();b.h.displayName="Yondergreen_Token";b.h.sellPrice=4e3;b.h.typeGen="dCurrency";b.h.ID=28;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all_of_Yondergreen's_quests!_Hold_down_to_add_to_your_token_bag,_found_in_Storage_Info._DONT_SELL_THIS_ITEM";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken36",a);a=newl();b=newl();b.h.displayName="Bill_Brr_Token";b.h.sellPrice=4e3;b.h.typeGen="dCurrency";b.h.ID=31;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all_of_Bill_Brr's_quests!_Hold_down_to_add_to_your_token_bag,_found_in_Storage_Info._DONT_SELL_THIS_ITEM";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken37",a);a=newl();b=newl();b.h.displayName="Crystalswine_Token";b.h.sellPrice=4e3;b.h.typeGen="dCurrency";b.h.ID=29;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="NPC";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_completed_all_of_Crystalswine's_quests!_Hold_down_to_add_to_your_token_bag,_found_in_Storage_Info._DONT_SELL_THIS_ITEM";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken38",a);a=newl();b=newl();b.h.displayName="Easy_FB_Tundra|NPC_Token";b.h.sellPrice=2800;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Made_up_of_the_tokens_from";b.h.desc_line2="all_of_the_Tundra_NPCs_whose";b.h.desc_line3="quests_are_easiest_to_complete.";b.h.desc_line4="DONT_SELL_THIS_ITEM";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken39",a);a=newl();b=newl();b.h.displayName="Med_FB_Tundra|NPC_Token";b.h.sellPrice=6e3;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="30";a.h.common=b;b=newl();b.h.desc_line1="Made_up_of_the_tokens_from";b.h.desc_line2="all_of_the_Tundra_NPCs_whose";b.h.desc_line3="quests_are_tough_to_complete.";b.h.desc_line4="DONT_SELL_THIS_ITEM";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken40",a);a=newl();b=newl();b.h.displayName="Hard_FB_Tundra|NPC_Token";b.h.sellPrice=16e3;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="45";a.h.common=b;b=newl();b.h.desc_line1="Made_up_of_the_tokens_from";b.h.desc_line2="all_of_the_Tundra_NPCs_whose";b.h.desc_line3="quests_are_hardest_to_complete.";b.h.desc_line4="DONT_SELL_THIS_ITEM";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("NPCtoken41",a);a=newl();b=newl();b.h.displayName="Tundra_NPC|Completion_Token";b.h.sellPrice=3e4;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.desc_line1="Made_up_of_all_the_tokens_that_you";b.h.desc_line2="collected_after_completing_an";b.h.desc_line3="NPC's_entire_questline.";b.h.desc_line4="DONT_SELL_THIS_ITEM";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("BadgeI1",a);a=newl();b=newl();b.h.displayName="Tundra_Skills|Completion_Token";b.h.sellPrice=25e3;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_mastered_the_art";b.h.desc_line2="of_the_Trapping,_Construction,";b.h.desc_line3="and_Worship_skills.";b.h.desc_line4="DONT_SELL_THIS_ITEM";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("BadgeI2",a);a=newl();b=newl();b.h.displayName="Tundra_Misc|Completion_Token";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_collected_all";b.h.desc_line2="the_coolest_and_rarest_items_that";b.h.desc_line3="Frostbite_Tundra_has_to_offer!";b.h.desc_line4="DONT_SELL_THIS_ITEM";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("BadgeI3",a);a=newl();b=newl();b.h.displayName="Newbie_Card_Pack";b.h.sellPrice=1;b.h.typeGen="dCardPack";b.h.ID=0;b.h.Type="CARD_PACK";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_open_the_pack!_The_cards_drop_on_the_ground,_make_sure_to_pick_them_up!!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardPack1",a);a=newl();b=newl();b.h.displayName="Ancient_Card_Pack";b.h.sellPrice=1;b.h.typeGen="dCardPack";b.h.ID=0;b.h.Type="CARD_PACK";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_open_the_pack!_The_cards_drop_on_the_ground,_make_sure_to_pick_them_up!!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardPack2",a);a=newl();b=newl();b.h.displayName="Eternal_Card_Pack";b.h.sellPrice=1;b.h.typeGen="dCardPack";b.h.ID=0;b.h.Type="CARD_PACK";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_open_the_pack!_The_cards_drop_on_the_ground,_make_sure_to_pick_them_up!!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardPack3",a);a=newl();b=newl();b.h.displayName="Dungeon_Card_Pack";b.h.sellPrice=1;b.h.typeGen="dCardPack";b.h.ID=0;b.h.Type="CARD_PACK";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_open_the_pack!_The_cards_drop_on_the_ground,_make_sure_to_pick_them_up!!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardPack4",a);a=newl();b=newl();b.h.displayName="Galaxy_Card_Pack";b.h.sellPrice=1;b.h.typeGen="dCardPack";b.h.ID=0;b.h.Type="CARD_PACK";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_open_the_pack!_The_cards_drop_on_the_ground,_make_sure_to_pick_them_up!!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardPack5",a);a=newl();b=newl();b.h.displayName="Smolderin|Card_Pack";b.h.sellPrice=1;b.h.typeGen="dCardPack";b.h.ID=0;b.h.Type="CARD_PACK";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_open_the_pack!_The_cards_drop_on_the_ground,_make_sure_to_pick_them_up!!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardPack6",a);a=newl();b=newl();b.h.displayName="Spirit_Card_Pack";b.h.sellPrice=1;b.h.typeGen="dCardPack";b.h.ID=0;b.h.Type="CARD_PACK";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_open_the_pack!_The_cards_drop_on_the_ground,_make_sure_to_pick_them_up!!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardPack7",a);a=newl();b=newl();b.h.displayName="Dungeon_Credits|Flurbo_Edition";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CURRENCY";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Woah!_I_thought_they_stopped_printing_Flurbo_credits_years_ago,_these_are_super_rare!_Hold_down_to_add_these_to_your_account.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("DungCredits2",a);a=newl();b=newl();b.h.displayName="Cash";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Dolla_dolla_bills_yall!_The_big_G!_The_golden_cheddar!_The_pasta!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("Cash",a);a=newl();b=newl();b.h.displayName="Experience";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CURRENCY";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Bruh";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("XP",a);a=newl();b=newl();b.h.displayName="Skill_Experience";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CURRENCY";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Bruh";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("XPskill",a);a=newl();b=newl();b.h.displayName="Weapon_Enhancer";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CURRENCY";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Gives_your_dungeon_weapon_a_random_enhancement,_replacing_the_old_one_if_already_enhanced.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("DungEnhancer0",a);a=newl();b=newl();b.h.displayName="Armor_Enhancer";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CURRENCY";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Gives_one_piece_of_your_dungeon_armor_a_random_enhancement,_replacing_the_old_one_if_already_enhanced.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("DungEnhancer1",a);a=newl();b=newl();b.h.displayName="Jewelry_Enhancer";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CURRENCY";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Gives_one_piece_of_your_dungeon_jewelry_a_random_enhancement,_replacing_the_old_one_if_already_enhanced.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("DungEnhancer2",a);a=newl();b=newl();b.h.displayName="Common_RNG|Item";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="WHAT";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Lol";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("DungRNG0",a);a=newl();b=newl();b.h.displayName="Uncommon_RNG|Item";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="WHAT";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Lol";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("DungRNG1",a);a=newl();b=newl();b.h.displayName="Rare_RNG|Item";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="WHAT";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Lol";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("DungRNG2",a);a=newl();b=newl();b.h.displayName="Epic_RNG|Item";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="WHAT";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Lol";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("DungRNG3",a);a=newl();b=newl();b.h.displayName="Legendary_RNG|Item";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="WHAT";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Lol";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("DungRNG4",a);a=newl();b=newl();b.h.displayName="Poisoned_Leg";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Yep,_that_leg_is_poisoned_alright..._you_can_tell_because_it's_purple,_and_purple_is_gross.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("DungeonA1",a);a=newl();b=newl();b.h.displayName="Minced_Bluebeef";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Bon_Appetit!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("DungeonA2",a);a=newl();b=newl();b.h.displayName="Bloated_Cyst";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_filled_with_fluid._Non_potable_fluid,_unless_you_like_to_live_danerously.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("DungeonA3",a);a=newl();b=newl();b.h.displayName="Floppy_Gizard";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It_jiggles_like_it's_nobody's_business!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("DungeonA4",a);a=newl();b=newl();b.h.displayName="Molted_Tail";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="I_guess_these_frogs_shed_their_tails,_like_how_snakes_shed_skin,_or_how_humans_shed_friendships";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("DungeonA5",a);a=newl();b=newl();b.h.displayName="Decomposing_Skull";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="The_skin_is_so_loose,_you_could_probably_strip_it_right_off.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("DungeonA6",a);a=newl();b=newl();b.h.displayName="Giant_Frog_Eye";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="So_that's_where_his_missing_eyeball_went...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("DungeonA7",a);a=newl();b=newl();b.h.displayName="Eldritch_Ripcage";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Huh..._that_vertebrae_is_lookin'_kinda_sus...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("DungeonA8",a);""" # fmt: skip # noqa -# `scripts.ItemDefinitions3` in source. Last updated in v2.503 +# `scripts.ItemDefinitions3` in source. Last updated in v2.505 # paste body of the `make` function (excluding outer curly braces) # remove all spaces and newlines script_item_definitions_3 = """T.itemDefs=newl();vara=newl(),b=newl();b.h.displayName="Spore_Cap";b.h.sellPrice=3;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_often_misunderstood_that_this";b.h.desc_line2="is_part_of_the_spore's_head._But_it's";b.h.desc_line3="actually_just_a_stylish_hat.";b.h.desc_line4="..._well,_stylish_in_Mushroom_Culture";b.h.desc_line5="at_least.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Grasslands1",a);a=newl();b=newl();b.h.displayName="Frog_Leg";b.h.sellPrice=5;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Imagine_if_humans_had_legs_like_this._Actually,_it_would_be_better_if_you_didn't,_unless_you_want_nightmares_about_humans_violently_jumping_at_you_from_20_feet_away.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Grasslands2",a);a=newl();b=newl();b.h.displayName="Bean_Slices";b.h.sellPrice=7;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="There's_something_disturbing_about";b.h.desc_line2="how_these_beans_have_bones.";b.h.desc_line3="Not_as_disturbing_as_how_they";b.h.desc_line4="also_have_eyeballs_and_walk_around,";b.h.desc_line5="but_still_disturbing_anyway.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Grasslands3",a);a=newl();b=newl();b.h.displayName="Red_Spore_Cap";b.h.sellPrice=7;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_often_misunderstood_that_this_is_just_the_spore's_stylish_hat,_due_to_the_cosmetic_nature_of_Green_Spores,_but_this_cap_is_actually_part_of_this_spore's_head.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Grasslands4",a);a=newl();b=newl();b.h.displayName="Slime_Sludge";b.h.sellPrice=10;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Ewww,_slimey.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Jungle1",a);a=newl();b=newl();b.h.displayName="Snake_Skin";b.h.sellPrice=13;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="''Theres_a_snake_in_me_boots!_Oh";b.h.desc_line2="wait_no,_my_boots_are_the_snake!''";b.h.desc_line3="_-_Someone_who_wears_snakeskin_boots";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Jungle2",a);a=newl();b=newl();b.h.displayName="Carrot_Cube";b.h.sellPrice=15;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Probably_the_only_time_you'll";b.h.desc_line2="ever_see_a_carrot_cut_into";b.h.desc_line3="a_cube!";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Jungle3",a);a=newl();b=newl();b.h.displayName="Glublin_Ear";b.h.sellPrice=20;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="This_item_will_listen_to_anything";b.h.desc_line2="you_have_to_say,_it's_all_ears!";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Forest1",a);a=newl();b=newl();b.h.displayName="Plank";b.h.sellPrice=25;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="I_wonder_what_the_Ed_Boys";b.h.desc_line2="are_up_to_these_days?";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Forest2",a);a=newl();b=newl();b.h.displayName="Bullfrog_Horn";b.h.sellPrice=30;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Makes_a_loud_noise_when_thrown_at";b.h.desc_line2="someones_head,_although_the_sound";b.h.desc_line3="doesn't_come_from_the_horn_itself...";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Forest3",a);a=newl();b=newl();b.h.displayName="Corn_Kernels";b.h.sellPrice=30;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="I_guess_what_they_say_about_corn_is_true...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Sewers1",a);a=newl();b=newl();b.h.displayName="Golden_Plop";b.h.sellPrice=500;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Conker_would_have_called_this_something_else.__________________NOTE:_This_is_a_very_rare_drop_from_Poops";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Sewers1b",a);a=newl();b=newl();b.h.displayName="Rats_Tail";b.h.sellPrice=90;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Ew_why_did_you_pick_this_up?";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Sewers2",a);a=newl();b=newl();b.h.displayName="Bonemeal";b.h.sellPrice=90;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Imagine_the_guy_who_came_up_with_this_name..._''wait,_you_guys_HAVENT_been_eating_this_stuff?''";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Sewers3",a);a=newl();b=newl();b.h.displayName="Stick";b.h.sellPrice=90;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Made_of_wood.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("TreeInterior1",a);a=newl();b=newl();b.h.displayName="Woodular_Circle";b.h.sellPrice=90;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Made_of_circle_that's_been_carved_into_the_shape_of_a_wood.____________NOTE:_This_is_a_very_rare_drop_from_Branches";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("TreeInterior1b",a);a=newl();b=newl();b.h.displayName="Acorn";b.h.sellPrice=90;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Every_time_I_plant_one_of_these,_someone_eventually_steals_it_and_puts_a_fully_grown_tree_in_its_place!_Very_annoying!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("TreeInterior2",a);a=newl();b=newl();b.h.displayName="Baba_Yaga_Baby|Eggs";b.h.sellPrice=400;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Eventually_you'll_be_able_to_turn_these_into_a_hatchable_egg!_Or_maybe_you_already_can!_Or_maybe_you_never_will!_Who_knows_what_future_content_there_may_be!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("BabaYagaETC",a);a=newl();b=newl();b.h.displayName="Pocket_Sand";b.h.sellPrice=60;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="This_sand_aint_right,_I_tell_you_hwat!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("DesertA1",a);a=newl();b=newl();b.h.displayName="Glass_Shard";b.h.sellPrice=60;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="The_result_of_letting_heat_and_sand_get_it_on_if_you_know_what_I'm_sayin.________________________NOTE:_This_is_a_very_rare_drop_from_Sandy_Pots";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("DesertA1b",a);a=newl();b=newl();b.h.displayName="Megalodon_Tooth";b.h.sellPrice=70;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Wait_a_minute,_this_isn't_a_real_megalodon_tooth!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("DesertA2",a);a=newl();b=newl();b.h.displayName="Crabby_Cakey";b.h.sellPrice=80;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_could_probably_start_a_restaurant_selling_these!_Just_employ_an_overeager_cook,_give_the_place_a_cool_name_like_The_Crispy_Crustacean,_and_you'd_be_set!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("DesertA3",a);a=newl();b=newl();b.h.displayName="Nuget_Cake";b.h.sellPrice=80;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Ohhhhh,_that's_what_people_mean_when_they_say_Love_At_First_Sight!_____________________________NOTE:_This_is_a_very_rare_drop_from_Crabcakes";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("DesertA3b",a);a=newl();b=newl();b.h.displayName="Coconotnotto";b.h.sellPrice=95;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="How_many_O's_are_in_this_item's_name?_Yep,_you're_right,_there's_six!_Good_job!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("DesertB1",a);a=newl();b=newl();b.h.displayName="Furled_Flag";b.h.sellPrice=108;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_an_American_Flag_with_red_paint_spilled_on_all_the_non-red_bits..._no_wait,_it's_the_German_Flag,_but_they_ran_out_of_black_and_yellow_material.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("DesertB2",a);a=newl();b=newl();b.h.displayName="Pincer_Arm";b.h.sellPrice=120;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="That_looks_sharp!_Is_probably_what_the_pincermin_said_before_you_cut_his_arm_off.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("DesertB3",a);a=newl();b=newl();b.h.displayName="Potato_Remains";b.h.sellPrice=133;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Mashed_potatos,_I_get_it!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("DesertB4",a);a=newl();b=newl();b.h.displayName="High_Steaks";b.h.sellPrice=145;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("DesertC1",a);a=newl();b=newl();b.h.displayName="Wakka_Cherry";b.h.sellPrice=160;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Weoweoweoweowdingding!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("DesertC2",a);a=newl();b=newl();b.h.displayName="Ghost";b.h.sellPrice=160;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="In_case_you_haven't_noticed,_these_are_all_references_to_the_famous_early_90s_videogame_called_Gex!_This_description_is_like_a_bad_joke_at_Louis_CK's_house!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("DesertC2b",a);a=newl();b=newl();b.h.displayName="Singlecle";b.h.sellPrice=180;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_like_a_monocle,_but_not_quite.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("DesertC3",a);a=newl();b=newl();b.h.displayName="Shrapshell";b.h.sellPrice=200;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="The_very_tippy_top_of_the_shell,_with_some_of_the_underneath_part_attached_as_well.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("DesertC4",a);a=newl();b=newl();b.h.displayName="Floof_Ploof";b.h.sellPrice=200;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="A_ball_of_sheep_wool._Well,_it_used_to_be_a_ball_of_ice_cream_but_then_I_re-drew_it.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SnowA1",a);a=newl();b=newl();b.h.displayName="Melty_Cube";b.h.sellPrice=215;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Eugh_whats_this_WATER_doing_around_my_ice???";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SnowA2",a);a=newl();b=newl();b.h.displayName="Yellow_Snowflake";b.h.sellPrice=230;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Mmm_yellow,_my_favorite_flavor_of_snow!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SnowA2a",a);a=newl();b=newl();b.h.displayName="Moustache_Comb";b.h.sellPrice=250;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Sad_times_I_hope_I_remember_to_change_this_before_relase.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SnowA3",a);a=newl();b=newl();b.h.displayName="Ram_Wool";b.h.sellPrice=500;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_got_a_horn_stuck_in_it._I_guess_you_could_say_this_wool_is_kinda_";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SnowA4",a);a=newl();b=newl();b.h.displayName="Sticky_Stick";b.h.sellPrice=270;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_ALLLLL_sticky!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SnowB1",a);a=newl();b=newl();b.h.displayName="Mamooth_Tusk";b.h.sellPrice=290;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="No_see,_this_is_a_mamOOth_tusk,_not_a_mammoth_tusk,_thats_why_you_think_it_looks_weird._Trust_me,_it's_an_incredibly_drawn_mamooth_tusk,_truly_a_work_of_art.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SnowB2",a);a=newl();b=newl();b.h.displayName="Ice_Age_3";b.h.sellPrice=3150;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="The_thrilling_documentary_that_captures_the_first_three_years_of_Jonathan_Ice's_life,_from_birth_to_preschool._It_also_has_thousands_of_1_Star_Ratings_online_claiming_it's_false_advertising.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SnowB2a",a);a=newl();b=newl();b.h.displayName="Snow_Ball";b.h.sellPrice=315;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="If_you_have_two_of_these_together,_please_be_careful_what_other_objects_you_put_near_them,_I_need_to_keep_this_game_age_appropriate!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SnowB5",a);a=newl();b=newl();b.h.displayName="Pen";b.h.sellPrice=340;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Click_the_pen_on,_then_hold_it_down_against_your_desk_and_let_go,_and_BAM_that_baby_will_fly_you_straight_to_the_principal's_office!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SnowB3",a);a=newl();b=newl();b.h.displayName="Cracked_Glass";b.h.sellPrice=360;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Ah_Mr._Thermostat,_not_looking_so_hot_now_that_I've_broken_you_into_tiny_little_bits..._no_seriously,_I_can't_tell_the_temperature_now_that_you're_broken.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SnowB4",a);a=newl();b=newl();b.h.displayName="Sippy_Straw";b.h.sellPrice=380;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="This_vacuum_operated_liquid_transfer_system_is_capable_of_dispencing_over_500_mL_of_dangerous_dihydrogen_monoxide_chemical_compounds_from_one_end_to_the_other!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SnowC1",a);a=newl();b=newl();b.h.displayName="Cryosnake_Skin";b.h.sellPrice=400;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Wow_this_is_just_a_cheap_recolouring_of_the_normal_snakeskin!_I_want_my_money_back!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SnowC2",a);a=newl();b=newl();b.h.displayName="Audio_Cord";b.h.sellPrice=425;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Uhhhh..._which_one_which_one...??_The_red_or_the_blue???_Cmon_think_think_think.._Blue...?_'BOOOOOM'._______Wait,_this_is_an_audio_cord_description?_Whoops,_I_thought_this_was_the_Bomb_Defuser_description!!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SnowC3",a);a=newl();b=newl();b.h.displayName="Contact_Lense";b.h.sellPrice=450;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_the_only_transparent_item_in_IdleOn!_If_they_weren't,_they'd_just_be_pirate_eyepatches_after_all...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SnowC4",a);a=newl();b=newl();b.h.displayName="Black_Lense";b.h.sellPrice=1e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Why_yes,_I_have_also_played_that_game_for_100s_of_hours_since_it_released_over_10_years_ago!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SnowC4a",a);a=newl();b=newl();b.h.displayName="Blood_Bone";b.h.sellPrice=700;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Wait_a_minute,_these_are_just_regular_bones_painted_red!_Wait_another_minute,_no,_that's_actual_blood..._ew.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SnowC5",a);a=newl();b=newl();b.h.displayName="Purple_Mush_Cap";b.h.sellPrice=100;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="According_to_herblore_books,_this_purple_cap_is_sterile._Those_purple_fungi_that_grow_from_the_ground,_however,_will_mutate_if_exposed_to_toxic_oil_radiation.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("GalaxyA1",a);a=newl();b=newl();b.h.displayName="TV_Remote";b.h.sellPrice=120;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Oh,_THATS_where_he_put_the_remote,_all_the_way_out_here_in_outer_space_thousands_of_miles_from_the_surface!_Oh_that_silly_man!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("GalaxyA2",a);a=newl();b=newl();b.h.displayName="Lost_Batteries";b.h.sellPrice=150;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Oh,_THATS_why_the_remote_wasn't_working_when_I_pushed_the_buttons,_the_batteries_were_all_the_way_out_here_in_the_rare_drop_table!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("GalaxyA2b",a);a=newl();b=newl();b.h.displayName="Half_Eaten_Donut";b.h.sellPrice=200;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="WAIT_NO_STOP!_Don't_eat_the_rest_of_this_donut!_Think_about_it..._if_it_was_really_worth_eating,_why_was_it_left_like_this,_all_un-eaten_and_such?_Think_before_you_eat!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("GalaxyA3",a);a=newl();b=newl();b.h.displayName="Genie_Lamp";b.h.sellPrice=275;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Rub_it,_maybe_a_genie_will_come_out!_Oh_wait,_you_already_killed_the_genie._Maybe_try_'not_murder'_next_time.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("GalaxyA4",a);a=newl();b=newl();b.h.displayName="Bottle_Cap";b.h.sellPrice=375;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="With_the_main_prey_of_the_Soda_Can_being_the_Soda_Bottle,_one_can_conclude_that_bottle_caps_are_indigestible,_and_will_remain_untarnished_after_being_consumed.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("GalaxyB1",a);a=newl();b=newl();b.h.displayName="Wurm_Tail";b.h.sellPrice=500;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="That's_a_nice_tail!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("GalaxyB2",a);a=newl();b=newl();b.h.displayName="Tongue_Bone";b.h.sellPrice=700;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="The_tongue_is_wrapped_around_the_bone.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("GalaxyB3",a);a=newl();b=newl();b.h.displayName="Crumpled_Wrapper";b.h.sellPrice=1e3;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Yo..._yuhhh,_yea,_yea._They_said_I_was_doomed_from_the_start,_maaan_ain't_no_wrapper_made_it_past_the_worst_part...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("GalaxyB4",a);a=newl();b=newl();b.h.displayName="Smol_Worm";b.h.sellPrice=1250;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="I_wonder_if_this_one's_an_undercover_agent_too...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("GalaxyB5",a);a=newl();b=newl();b.h.displayName="Empty_Oyster|Shell";b.h.sellPrice=1700;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_a_lame_shell_that's_been_desaturated_due_to_it's_unimportance.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("GalaxyC1",a);a=newl();b=newl();b.h.displayName="Pearler_Shell";b.h.sellPrice=3e3;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Yow_wow_wow!_This_one's_got_a_pearl_in_it!!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("GalaxyC1b",a);a=newl();b=newl();b.h.displayName="Wriggly_Ball";b.h.sellPrice=4e3;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_like_some_sort_of_tentankle_ball._Hang_on,_let_me_try_that_again._It's_like_some_sort_of_tentacle_ball.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("GalaxyC2",a);a=newl();b=newl();b.h.displayName="Gel_Chunk";b.h.sellPrice=5500;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Still_tingly_at_the_touch...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("GalaxyC3",a);a=newl();b=newl();b.h.displayName="Condensed_Zap";b.h.sellPrice=7500;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="...37_Megawatts_of_electricity,_if_my_voltmeter_reading_is_correct!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("GalaxyC4",a);a=newl();b=newl();b.h.displayName="Amarok_Slab";b.h.sellPrice=250;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="A_piece_of_rock_from_the_big_bad_wolf_himself._Careful,_it's_overflowing_with_green_plasma_energy!_No_wait,_that's_just_some_moss.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Quest17",a);a=newl();b=newl();b.h.displayName="Chaotic_Amarok|Slab";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="A_piece_of_rock_from_the_bigger_badder_wolf_himself._Careful,_it's_overflowing_with_poisonous_ooze!_No_wait,_that's_just_plasma_energy...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Quest29",a);a=newl();b=newl();b.h.displayName="Ripped_Tunic";b.h.sellPrice=1;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="A_piece_of_Efaunt's_tunic._I_guess_it_must_have_gotten_torn_off_while_you_were_absolutely_obliterating_them_with_big_time_Damage.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("EfauntDrop1",a);a=newl();b=newl();b.h.displayName="Ribbed_Tunic";b.h.sellPrice=1;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Chaotic_Efaunt_is_probably_glad_you_removed_a_few_of_his_ribs,_for_uhh..._various_reasons.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("EfauntDrop2",a);a=newl();b=newl();b.h.displayName="Chizoar_Spike";b.h.sellPrice=1;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="A_spike_from_Chizoar's_neck._It's_ice_cold,_and_sharp_as_a_tack.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Chiz0",a);a=newl();b=newl();b.h.displayName="Chizoar_Stalagmite";b.h.sellPrice=1;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="A_spike_from_Chaotic_Chizoar's_neck._Despite_it_being_made_of_ice,_it_burns_at_the_touch_due_to_its_acidity.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Chiz1",a);a=newl();b=newl();b.h.displayName="Troll_Scales";b.h.sellPrice=1e3;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Even_the_scales_look_like_they_have_a_wry_smile,_almost_as_if_it_remembers_the_part_it_played_in_that_infamous_tutorial_prank_you_were_unfortunately_involved_in";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("TrollPart",a);a=newl();b=newl();b.h.displayName="Kruk_Tooth";b.h.sellPrice=1e3;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Extracted_straight_from_the_horses_mouth!_At_least_I_think_he_was_a_horse..._maybe_a_buffalo?_It_came_from_a_mouth_at_the_very_least.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("KrukPart",a);a=newl();b=newl();b.h.displayName="Kruk_Cavity_Tooth";b.h.sellPrice=1e3;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="I_guess_proper_dental_hygiene_isn't_one_of_the_requirements_to_becoming_a_Divinity._";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("KrukPart2",a);a=newl();b=newl();b.h.displayName="Emperor_Ribbon";b.h.sellPrice=1e3;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="So,_instead_of_taking_his_equipment_directly,_you_take_his_ribbon..._so_that_you_can..._make_his_equipment?_Huh?";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("EmpPart",a);a=newl();b=newl();b.h.displayName="Suggma_Ashes";b.h.sellPrice=15e3;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Poor_suggma_slug,_couldn't_even_handle_a_little_bit_of_water_eh?";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("LavaA1",a);a=newl();b=newl();b.h.displayName="Royal_Suggma_Urn";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Huh..._was_uh..._was_that_one_some_sort_of_king_or_something?_This_species_really_needs_to_sort_out_its_heirarchy,_it_didn't_look_any_different_from_the_others!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("LavaA1b",a);a=newl();b=newl();b.h.displayName="Plated_Crumbs";b.h.sellPrice=18e3;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Look_if_you're_gonna_kill_the_poor_thing,_you_may_as_well_have_the_decency_of_finishing_the_whole_thing!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("LavaA2",a);a=newl();b=newl();b.h.displayName="Sundried_Glass";b.h.sellPrice=22e3;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Reduced_to_mere_glass_fragments..._I_guess_thats_just_the_price_he_pays_for_being_a_monster,_his_destiny_was_calling.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("LavaA3",a);a=newl();b=newl();b.h.displayName="Cheesy_Crumbs";b.h.sellPrice=29e3;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Thats_not_your_cheese!_Err,_thats_nacho_cheese!_Ok_wow_that_really_doesn't_work_typed_out_like_that...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("LavaA4",a);a=newl();b=newl();b.h.displayName="Stilt_Pole";b.h.sellPrice=36e3;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_got_a_built_in_gyroscope_to_help_with_balance._Unfortunately,_it_isn't_turned_on.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("LavaA5",a);a=newl();b=newl();b.h.displayName="Hampter";b.h.sellPrice=5e5;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hampter.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("LavaA5b",a);a=newl();b=newl();b.h.displayName="Meteorite";b.h.sellPrice=42e3;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_like_a_meatball_served_in_tomato_sauce..._lets_eat!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("LavaB1",a);a=newl();b=newl();b.h.displayName="Shattered_Skull";b.h.sellPrice=5e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="So,_is_this_pile_of_crumbs_still_1_skull,_or_like_a_thousand_skulls?_At_what_point_when_crumbling_does_a_skull_stop_being_a_skull?";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("LavaB2",a);a=newl();b=newl();b.h.displayName="Orange_Slice";b.h.sellPrice=58e3;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="So_this_is_where_all_those_Youth_Sports_get_their_half_time_snacks!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("LavaB3",a);a=newl();b=newl();b.h.displayName="OJ_Juice";b.h.sellPrice=75e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Delicious!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("LavaB3b",a);a=newl();b=newl();b.h.displayName="Molten_Lamp";b.h.sellPrice=7e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="I_love_lamp!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("LavaB4",a);a=newl();b=newl();b.h.displayName="Spitfire";b.h.sellPrice=8e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Ew,_that's_basically_its_saliva!_Why_are_you_keeping_it_in_your_inventory??_Ugh_whatever...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("LavaB5",a);a=newl();b=newl();b.h.displayName="Hard_Hat";b.h.sellPrice=9e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Safety_is_numba_one_priority!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("LavaB6",a);a=newl();b=newl();b.h.displayName="Wormie_Slices";b.h.sellPrice=11e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Where_are_the_green_eggs_to_go_with_these?";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("LavaC1",a);a=newl();b=newl();b.h.displayName="Mongo_Worm_Slices";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Perfect_for_an_Eating_Challenge!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("LavaC2",a);a=newl();b=newl();b.h.displayName="Leafy_Droplet";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_more_of_a_gel_than_a_liquid,_but_strangely_when_you_pull_the_leaf_out_it_loses_its_rigidity.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SpiA1",a);a=newl();b=newl();b.h.displayName="Rice_Cake";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="A_single_slice_of_a_rice_cake._Despite_seemingly_being_made_of_90_percent_air,_some_people_really_enjoy_these.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SpiA2",a);a=newl();b=newl();b.h.displayName="Stacked_Rice_Cake";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="A_single_slice_of_a_rice_cake,_but_with_another_single_slice_of_rice_cake_attached_underneath_the_first_single_slice_of_rice!_There's_also_a_single_slice_of_orange_sauce,_if_you_can_call_liquid_a_slice._Want_me_to_say_slice_again?";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SpiA2b",a);a=newl();b=newl();b.h.displayName="Bamboo";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_stole_this_from_a_hard_working_water_spirit..._but_carrying_bamboo_is_not_what_water_is_meant_to_do,_so_it_had_it_coming,_that_silly_water!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SpiA3",a);a=newl();b=newl();b.h.displayName="Leafy_Horn";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_took_the_baby_troll's_beloved_horn,_but_you_didn't_even_have_the_decency_to_ask_first?_I_guess_MANNERS_isn't_a_skill_in_Worlds_1_to_5_huh...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SpiA4",a);a=newl();b=newl();b.h.displayName="Wooden_Aortic|Mass";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It_sits_motionless,_unbeating,_blood_not_being_pumped._It's_made_of_wood,_so_this_doesn't_come_as_a_surprise.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SpiA5",a);a=newl();b=newl();b.h.displayName="Leafy_Branch";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Eleven_leaves,_one_branch._If_we_had_14_more_branches,_and_took_off_3_leaves_from_each_branch,_how_many_seconds_in_total_would_be_wasted_figuring_out_how_many_leaves_there_are?_15,_cuz_there_are_120_leaves.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SpiB1",a);a=newl();b=newl();b.h.displayName="Light_Lantern";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="I_think_it_says..._OTL?_One_Time_Lucky?_But_I_want_to_be_lucky_MORE_than_once..._better_wipe_out_some_more_lantern_spirits!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SpiB2",a);a=newl();b=newl();b.h.displayName="Dark_Lantern";b.h.sellPrice=15e5;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Oh_NO!_I_know_what_THAT_means,_thats_AWFUL!!_That_puts_the_light_lantern_in_context,_thats_for_sure...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SpiB2b",a);a=newl();b=newl();b.h.displayName="Troll_Flower";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Now_I_know_what_you're_thinking,_and_yes_it_is_indeed_part_of_its_head_and_not_a_hat.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SpiB3",a);a=newl();b=newl();b.h.displayName="Chopped_Leek";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Wow_ok_this_is_way_more_gruesome_with_context_than_without...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SpiB4",a);a=newl();b=newl();b.h.displayName="Shattered_Ceramic";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="I'm_falllling_to_pieeeeceesssss,_yeahhh...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SpiC1",a);a=newl();b=newl();b.h.displayName="Eviscerated_Chunk";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Ouch!_I_don't_think_we_have_a_big_enough_bandaid_for_the_poor_fella!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SpiC2",a);a=newl();b=newl();b.h.displayName="Royal_Yolk";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Sometimes_it's_fun_to_poke_at_the_yellow_outisde_and_watch_the_yellow_insides_ooze_out...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SpiD1",a);a=newl();b=newl();b.h.displayName="Royal_Fabric";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Now_I_know_what_you're_thinking,_and_yes_it_is_indeed_part_of_its_elegant_hat_and_not_part_of_its_head.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SpiD2",a);a=newl();b=newl();b.h.displayName="Royal_Headpiece";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It_shines_bright_and_true,_to_signify_how_dope_n'_epic_ninjas_are,_heck_yea.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SpiD3",a);a=newl();b=newl();b.h.displayName="Equinox_Flesh";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="On_the_plus_side,_it_reflects_light_in_a_cool_way._On_the_minus_side,_that_probably_makes_it_carcinogenic...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("w7A1",a);a=newl();b=newl();b.h.displayName="Doodlefins";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="The_fin_really_is_the_most_iconic_part_of_the_Doodlefish!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("w7A2",a);a=newl();b=newl();b.h.displayName="Earl_Tail";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Earl_ain't_got_no_tail_no_more.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("w7A3",a);a=newl();b=newl();b.h.displayName="Cracked_Shell";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_can't_make_a_perfect_Deathnote_score_without_breaking_a_few_slug_shells!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("w7A4",a);a=newl();b=newl();b.h.displayName="Scaled_Fragment";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="The_balloon_floated_away,_so_these_scales_are_all_you_get!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("w7A5",a);a=newl();b=newl();b.h.displayName="Clammy_Chunk";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_a_chunk_of_clam..._literally._Clam_shells_are_basically_clam_skin,_it's_not_like_clams_find_a_shell_to_call_home,_it's_part_of_their_body.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("w7A6",a);a=newl();b=newl();b.h.displayName="Plastic_Litter";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="People_really_do_just_litter..._the_world_is_their_trash_can,_I_guess.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("w7A7",a);a=newl();b=newl();b.h.displayName="Pufferflesh";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="The_spots_are_actually_taste-buds,_strangely_enough!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("w7A8",a);a=newl();b=newl();b.h.displayName="Demonflesh";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Sharp_and_pointy!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("w7A9",a);a=newl();b=newl();b.h.displayName="Fishfork";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="The_fish_survived_being_speared,_but_couldn't_survive_you!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("w7A10",a);a=newl();b=newl();b.h.displayName="Crabclaw";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Wow..._keep_away_from_these_guys_on_St_Patrick's_Day_if_you're_not_wearing_green!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("w7A11",a);a=newl();b=newl();b.h.displayName="Guardian_Mace";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Very_well_made,_considering_it's_made_by_Crabkind.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("w7A12",a);a=newl();b=newl();b.h.displayName="Eye_of_Koi";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_a_glass_eye,_which_means_you're_violently_decimating_a_population_of_blind_defensle..._oh_wait_no,_it's_a_real_eyeball.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("w7B1",a);a=newl();b=newl();b.h.displayName="Immaculate_Eye";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Woah..._I_bet_someone_out_there_would_value_such_a_thing_quite_highly!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("w7B1b",a);a=newl();b=newl();b.h.displayName="Bubble_N_Chains";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Take_awayyyyyyy..._take_away_this_bubble_and_chain!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("w7B2",a);a=newl();b=newl();b.h.displayName="Pirate_Emblem_I";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="The_very_first_emblem_given_to_new_pirates,_signifying_their_alliance_to_the_pirate_crew.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("w7B3",a);a=newl();b=newl();b.h.displayName="Caviar";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Ooooohhhohoh,_unborn_fish_in_circular_form,_how_sumptuous!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("w7B4",a);a=newl();b=newl();b.h.displayName="Jelly_Cube";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Wibble_wobble_wibble_wobble_wibble_wobble_wibble_wobble_wibble_wobble_wibble_wobble_wibble_wobble";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("w7B5",a);a=newl();b=newl();b.h.displayName="Tuft_of_Kelp";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Kelpfish_as_you_know_them_are_actually_female..._as_for_the_male_fish,_well,_you're_looking_at_a_group_of_them._Confused?_Look_up_male_anglerfish...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("w7B6",a);a=newl();b=newl();b.h.displayName="Mantacakes";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="I_don't_care_what_message_of_tastiness_and_goodness_you_send_me,_I_will_not_endorse_this_food.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("w7B7",a);a=newl();b=newl();b.h.displayName="Glowfish_Tail";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It'll_keep_glowing_so_long_as_it_believes_in_itself.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("w7B8",a);a=newl();b=newl();b.h.displayName="Ancient_Scales";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_a_writhing_pile_of_scales,_gems,_and_extremities.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("w7B9",a);a=newl();b=newl();b.h.displayName="Magmaspike";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="What_would_hurt_more,_the_stab_wound_or_the_burn_wound?";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("w7B10",a);a=newl();b=newl();b.h.displayName="Pirate_Mark_II";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="The_second_emblem_given_to_veteran_pirates,_signifying_their_loyalty_to_the_pirate_crew.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("w7B11",a);a=newl();b=newl();b.h.displayName="Pirate_Anchor";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Things_would_get_even_messier_in_the_Mess_Hall_without_these_bad_boys_tying_them_down!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("w7B11b",a);a=newl();b=newl();b.h.displayName="Pirate_Mark_III";b.h.sellPrice=15e4;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MONSTER_DROP";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="The_penultimate_emblem_given_to_legendary_pirates,_signifying_their_leadership_of_the_pirate_crew.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("w7B12",a);a=newl();b=newl();b.h.displayName="Hyper_Obol_Stack|Square_Edition";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="OBOL_STACK";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_and_1_square_hyper_obol_will_drop_at_your_feet!_YOU_MUST_BE_IN_WORLD_2_TOWN_TO_USE_THIS!_This_way_you_can_trash_other_obols_incase_you're_out_of_space!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("GemP35",a);a=newl();b=newl();b.h.displayName="Hyper_Obol_of|Lucky_Rolls";b.h.sellPrice=1;b.h.typeGen="aObolCircle";b.h.ID=5;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=4;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolHyper0",a);a=newl();b=newl();b.h.displayName="Hyper_Obol_of|Stragiwisluk";b.h.sellPrice=1;b.h.typeGen="aObolCircle";b.h.ID=5;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolHyper1",a);a=newl();b=newl();b.h.displayName="Hyper_Obol_of|Supa_Damagio";b.h.sellPrice=1;b.h.typeGen="aObolCircle";b.h.ID=5;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolHyper2",a);a=newl();b=newl();b.h.displayName="Hyper_Obol_of|Destruction";b.h.sellPrice=1;b.h.typeGen="aObolCircle";b.h.ID=5;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MULTIKILL_PER_TIER";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolHyper3",a);a=newl();b=newl();b.h.displayName="Hyper_Obol_of|Rare_Drops";b.h.sellPrice=1;b.h.typeGen="aObolSquare";b.h.ID=5;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolHyperB0",a);a=newl();b=newl();b.h.displayName="Hyper_Obol_of|All_Statisticals";b.h.sellPrice=1;b.h.typeGen="aObolSquare";b.h.ID=5;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolHyperB1",a);a=newl();b=newl();b.h.displayName="Hyper_Obol_of|Mega_Damagio";b.h.sellPrice=1;b.h.typeGen="aObolSquare";b.h.ID=5;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=12;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolHyperB2",a);a=newl();b=newl();b.h.displayName="Hyper_Obol_of|Decimation";b.h.sellPrice=1;b.h.typeGen="aObolSquare";b.h.ID=5;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=8;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MULTIKILL_PER_TIER";b.h.UQ1val=6;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolHyperB3",a);a=newl();b=newl();b.h.displayName="Bronze_STR_Obol";b.h.sellPrice=1;b.h.typeGen="aObolCircle";b.h.ID=0;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolBronze0",a);a=newl();b=newl();b.h.displayName="Silver_STR_Obol";b.h.sellPrice=3;b.h.typeGen="aObolCircle";b.h.ID=1;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolSilver0",a);a=newl();b=newl();b.h.displayName="Gold_STR_Obol";b.h.sellPrice=8;b.h.typeGen="aObolCircle";b.h.ID=2;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=4;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolGold0",a);a=newl();b=newl();b.h.displayName="Platinum_STR_Obol";b.h.sellPrice=20;b.h.typeGen="aObolCircle";b.h.ID=3;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=7;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPlatinum0",a);a=newl();b=newl();b.h.displayName="Dementia_STR_Obol";b.h.sellPrice=50;b.h.typeGen="aObolSquare";b.h.ID=4;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=12;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPink0",a);a=newl();b=newl();b.h.displayName="Bronze_AGI_Obol";b.h.sellPrice=1;b.h.typeGen="aObolCircle";b.h.ID=0;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=1;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolBronze1",a);a=newl();b=newl();b.h.displayName="Silver_AGI_Obol";b.h.sellPrice=3;b.h.typeGen="aObolCircle";b.h.ID=1;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=2;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolSilver1",a);a=newl();b=newl();b.h.displayName="Gold_AGI_Obol";b.h.sellPrice=8;b.h.typeGen="aObolCircle";b.h.ID=2;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=4;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolGold1",a);a=newl();b=newl();b.h.displayName="Platinum_AGI_Obol";b.h.sellPrice=20;b.h.typeGen="aObolCircle";b.h.ID=3;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=7;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPlatinum1",a);a=newl();b=newl();b.h.displayName="Dementia_AGI_Obol";b.h.sellPrice=50;b.h.typeGen="aObolSquare";b.h.ID=4;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=12;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPink1",a);a=newl();b=newl();b.h.displayName="Bronze_WIS_Obol";b.h.sellPrice=1;b.h.typeGen="aObolCircle";b.h.ID=0;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolBronze2",a);a=newl();b=newl();b.h.displayName="Silver_WIS_Obol";b.h.sellPrice=3;b.h.typeGen="aObolCircle";b.h.ID=1;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=2;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolSilver2",a);a=newl();b=newl();b.h.displayName="Gold_WIS_Obol";b.h.sellPrice=8;b.h.typeGen="aObolCircle";b.h.ID=2;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=4;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolGold2",a);a=newl();b=newl();b.h.displayName="Platinum_WIS_Obol";b.h.sellPrice=20;b.h.typeGen="aObolCircle";b.h.ID=3;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=7;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPlatinum2",a);a=newl();b=newl();b.h.displayName="Dementia_WIS_Obol";b.h.sellPrice=50;b.h.typeGen="aObolSquare";b.h.ID=4;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=12;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPink2",a);a=newl();b=newl();b.h.displayName="Bronze_LUK_Obol";b.h.sellPrice=1;b.h.typeGen="aObolCircle";b.h.ID=0;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolBronze3",a);a=newl();b=newl();b.h.displayName="Silver_LUK_Obol";b.h.sellPrice=3;b.h.typeGen="aObolCircle";b.h.ID=1;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=2;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolSilver3",a);a=newl();b=newl();b.h.displayName="Gold_LUK_Obol";b.h.sellPrice=8;b.h.typeGen="aObolCircle";b.h.ID=2;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=4;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolGold3",a);a=newl();b=newl();b.h.displayName="Platinum_LUK_Obol";b.h.sellPrice=20;b.h.typeGen="aObolCircle";b.h.ID=3;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=7;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPlatinum3",a);a=newl();b=newl();b.h.displayName="Dementia_LUK_Obol";b.h.sellPrice=50;b.h.typeGen="aObolSquare";b.h.ID=4;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=12;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPink3",a);a=newl();b=newl();b.h.displayName="Bronze_Obol_of|Puny_Damage";b.h.sellPrice=1;b.h.typeGen="aObolCircle";b.h.ID=0;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="_BASE_DAMAGE";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolBronzeDamage",a);a=newl();b=newl();b.h.displayName="Silver_Obol_of|Little_Damage";b.h.sellPrice=3;b.h.typeGen="aObolCircle";b.h.ID=1;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="_BASE_DAMAGE";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolSilverDamage",a);a=newl();b=newl();b.h.displayName="Golden_Obol_of|Big_Boy_Damage";b.h.sellPrice=8;b.h.typeGen="aObolCircle";b.h.ID=2;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="_BASE_DAMAGE";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolGoldDamage",a);a=newl();b=newl();b.h.displayName="Platinum_Obol_of|Lethal_Damage";b.h.sellPrice=20;b.h.typeGen="aObolSquare";b.h.ID=3;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=2;b.h.AGI=3;b.h.WIS=3;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="_BASE_DAMAGE";b.h.UQ1val=50;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPlatinumDamage",a);a=newl();b=newl();b.h.displayName="Dementia_Obol_of|Infinite_Damage";b.h.sellPrice=50;b.h.typeGen="aObolHexagon";b.h.ID=4;b.h.Type="HEXAGON_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=0;b.h.UQ1txt="_BASE_DAMAGE";b.h.UQ1val=100;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPinkDamage",a);a=newl();b=newl();b.h.displayName="Platinum_Obol_of|Blinding_Speed";b.h.sellPrice=20;b.h.typeGen="aObolHexagon";b.h.ID=3;b.h.Type="HEXAGON_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=4;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MOVEMENT_SPEED";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPlatinumSpeed",a);a=newl();b=newl();b.h.displayName="Silver_Obol_of|Pocket_Change";b.h.sellPrice=3;b.h.typeGen="aObolSquare";b.h.ID=1;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MONEY";b.h.UQ1val=6;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolSilverMoney",a);a=newl();b=newl();b.h.displayName="Golden_Obol_of|Plentiful_Riches";b.h.sellPrice=8;b.h.typeGen="aObolSquare";b.h.ID=2;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MONEY";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolGoldMoney",a);a=newl();b=newl();b.h.displayName="Bronze_Obol_of|Small_Swings";b.h.sellPrice=1;b.h.typeGen="aObolCircle";b.h.ID=0;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolBronzeMining",a);a=newl();b=newl();b.h.displayName="Silver_Obol_of|Moderate_Mining";b.h.sellPrice=3;b.h.typeGen="aObolCircle";b.h.ID=1;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=1;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolSilverMining",a);a=newl();b=newl();b.h.displayName="Golden_Obol_of|Diligent_Digging";b.h.sellPrice=8;b.h.typeGen="aObolSquare";b.h.ID=2;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=2;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolGoldMining",a);a=newl();b=newl();b.h.displayName="Platinum_Obol_of|Dwarven_Delving";b.h.sellPrice=20;b.h.typeGen="aObolHexagon";b.h.ID=3;b.h.Type="HEXAGON_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPlatinumMining",a);a=newl();b=newl();b.h.displayName="Dementia_Obol_of|Magisterial_Metals";b.h.sellPrice=50;b.h.typeGen="aObolSparkle";b.h.ID=4;b.h.Type="SPARKLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=5;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=8;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPinkMining",a);a=newl();b=newl();b.h.displayName="Bronze_Obol_of|Chippin_Chops";b.h.sellPrice=1;b.h.typeGen="aObolCircle";b.h.ID=0;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolBronzeChoppin",a);a=newl();b=newl();b.h.displayName="Silver_Obol_of|Big_Bark";b.h.sellPrice=3;b.h.typeGen="aObolCircle";b.h.ID=1;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolSilverChoppin",a);a=newl();b=newl();b.h.displayName="Golden_Obol_of|Huge_Hackin";b.h.sellPrice=8;b.h.typeGen="aObolSquare";b.h.ID=2;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=0;b.h.AGI=0;b.h.WIS=2;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolGoldChoppin",a);a=newl();b=newl();b.h.displayName="Platinum_Obol_of|Lumby_Loggo";b.h.sellPrice=20;b.h.typeGen="aObolHexagon";b.h.ID=3;b.h.Type="HEXAGON_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=0;b.h.AGI=0;b.h.WIS=3;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CHOP_EFFICIENCY";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPlatinumChoppin",a);a=newl();b=newl();b.h.displayName="Dementia_Obol_of|WOWOWOWWO";b.h.sellPrice=50;b.h.typeGen="aObolSparkle";b.h.ID=4;b.h.Type="SPARKLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=0;b.h.AGI=0;b.h.WIS=5;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CHOP_EFFICIENCY";b.h.UQ1val=8;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPinkChoppin",a);a=newl();b=newl();b.h.displayName="Bronze_Obol_of|Finite_Fish";b.h.sellPrice=1;b.h.typeGen="aObolCircle";b.h.ID=0;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolBronzeFishing",a);a=newl();b=newl();b.h.displayName="Silver_Obol_of|Puny_Pikes";b.h.sellPrice=3;b.h.typeGen="aObolCircle";b.h.ID=1;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=1;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolSilverFishing",a);a=newl();b=newl();b.h.displayName="Golden_Obol_of|Crazy_Carp";b.h.sellPrice=8;b.h.typeGen="aObolSquare";b.h.ID=2;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=2;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolGoldFishing",a);a=newl();b=newl();b.h.displayName="Platinum_Obol_of|Tremendous_Trout";b.h.sellPrice=20;b.h.typeGen="aObolHexagon";b.h.ID=3;b.h.Type="HEXAGON_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_FISHIN_EFFICINCY";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPlatinumFishing",a);a=newl();b=newl();b.h.displayName="Dementia_Obol_of|Monument_Marlins";b.h.sellPrice=50;b.h.typeGen="aObolSparkle";b.h.ID=4;b.h.Type="SPARKLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=5;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_FISHIN_EFFICINCY";b.h.UQ1val=8;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPinkFishing",a);a=newl();b=newl();b.h.displayName="Bronze_Obol_of|Few_Flies";b.h.sellPrice=1;b.h.typeGen="aObolCircle";b.h.ID=0;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolBronzeCatching",a);a=newl();b=newl();b.h.displayName="Silver_Obol_of|Big_Bugs";b.h.sellPrice=3;b.h.typeGen="aObolCircle";b.h.ID=1;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=1;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolSilverCatching",a);a=newl();b=newl();b.h.displayName="Golden_Obol_of|Insane_Insects";b.h.sellPrice=8;b.h.typeGen="aObolSquare";b.h.ID=2;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=0;b.h.AGI=2;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolGoldCatching",a);a=newl();b=newl();b.h.displayName="Platinum_Obol_of|Ample_Anthropods";b.h.sellPrice=20;b.h.typeGen="aObolHexagon";b.h.ID=3;b.h.Type="HEXAGON_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=0;b.h.AGI=3;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CATCH_EFFICINCY";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPlatinumCatching",a);a=newl();b=newl();b.h.displayName="Dementia_Obol_of|Colossal_Crawlies";b.h.sellPrice=50;b.h.typeGen="aObolSparkle";b.h.ID=4;b.h.Type="SPARKLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=0;b.h.AGI=5;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CATCH_EFFICINCY";b.h.UQ1val=8;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPinkCatching",a);a=newl();b=newl();b.h.displayName="Silver_Obol_of|Double_Sixes";b.h.sellPrice=3;b.h.typeGen="aObolSquare";b.h.ID=1;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=2;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolSilverLuck",a);a=newl();b=newl();b.h.displayName="Golden_Obol_of|Triple_Sixes";b.h.sellPrice=8;b.h.typeGen="aObolSquare";b.h.ID=2;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=7;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolGoldLuck",a);a=newl();b=newl();b.h.displayName="Platinum_Obol_of|Yahtzee_Sixes";b.h.sellPrice=20;b.h.typeGen="aObolHexagon";b.h.ID=3;b.h.Type="HEXAGON_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=5;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPlatinumLuck",a);a=newl();b=newl();b.h.displayName="Dementia_Obol_of|Infinisixes";b.h.sellPrice=50;b.h.typeGen="aObolSparkle";b.h.ID=4;b.h.Type="SPARKLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=7;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPinkLuck",a);a=newl();b=newl();b.h.displayName="Bronze_Obol_of|Pop";b.h.sellPrice=1;b.h.typeGen="aObolCircle";b.h.ID=0;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=1;b.h.Defence=1;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolBronzePop",a);a=newl();b=newl();b.h.displayName="Silver_Obol_of|Pop_Pop";b.h.sellPrice=3;b.h.typeGen="aObolCircle";b.h.ID=1;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=3;b.h.Defence=2;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolSilverPop",a);a=newl();b=newl();b.h.displayName="Golden_Obol_of|Poppity_Pop";b.h.sellPrice=8;b.h.typeGen="aObolSquare";b.h.ID=2;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=6;b.h.Defence=3;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=4;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolGoldPop",a);a=newl();b=newl();b.h.displayName="Platinum_Obol_of|Poppity_Poppy";b.h.sellPrice=20;b.h.typeGen="aObolHexagon";b.h.ID=3;b.h.Type="HEXAGON_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=9;b.h.Defence=4;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=6;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPlatinumPop",a);a=newl();b=newl();b.h.displayName="Dementia_Obol_of|Pop_Pop_Pop_Pop";b.h.sellPrice=50;b.h.typeGen="aObolSparkle";b.h.ID=4;b.h.Type="SPARKLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=12;b.h.Defence=5;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=9;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPinkPop",a);a=newl();b=newl();b.h.displayName="Bronze_Obol_of|Multikill";b.h.sellPrice=1;b.h.typeGen="aObolCircle";b.h.ID=0;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MULTIKILL";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolBronzeKill",a);a=newl();b=newl();b.h.displayName="Silver_Obol_of|Megakill";b.h.sellPrice=3;b.h.typeGen="aObolCircle";b.h.ID=1;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MULTIKILL";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolSilverKill",a);a=newl();b=newl();b.h.displayName="Golden_Obol_of|Ultrakill";b.h.sellPrice=8;b.h.typeGen="aObolSquare";b.h.ID=2;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MULTIKILL";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolGoldKill",a);a=newl();b=newl();b.h.displayName="Platinum_Obol_of|Killimanjaro";b.h.sellPrice=20;b.h.typeGen="aObolHexagon";b.h.ID=3;b.h.Type="HEXAGON_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MULTIKILL";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPlatinumKill",a);a=newl();b=newl();b.h.displayName="Dementia_Obol_of|Killionaire";b.h.sellPrice=50;b.h.typeGen="aObolSparkle";b.h.ID=4;b.h.Type="SPARKLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MULTIKILL";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPinkKill",a);a=newl();b=newl();b.h.displayName="Bronze_Obol_of|Experience";b.h.sellPrice=1;b.h.typeGen="aObolCircle";b.h.ID=0;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolBronzeEXP",a);a=newl();b=newl();b.h.displayName="Silver_Obol_of|Experience";b.h.sellPrice=3;b.h.typeGen="aObolCircle";b.h.ID=1;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolSilverEXP",a);a=newl();b=newl();b.h.displayName="Golden_Obol_of|Experience";b.h.sellPrice=8;b.h.typeGen="aObolSquare";b.h.ID=2;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=2;b.h.WIS=2;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolGoldEXP",a);a=newl();b=newl();b.h.displayName="Platinum_Obol_of|Experience";b.h.sellPrice=20;b.h.typeGen="aObolHexagon";b.h.ID=3;b.h.Type="HEXAGON_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPlatinumEXP",a);a=newl();b=newl();b.h.displayName="Dementia_Obol_of|Experience";b.h.sellPrice=50;b.h.typeGen="aObolSparkle";b.h.ID=4;b.h.Type="SPARKLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=4;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPinkEXP",a);a=newl();b=newl();b.h.displayName="Bronze_Obol_of|Cards";b.h.sellPrice=1;b.h.typeGen="aObolCircle";b.h.ID=0;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CARD_DROP_CHANCE";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolBronzeCard",a);a=newl();b=newl();b.h.displayName="Silver_Obol_of|Cards";b.h.sellPrice=3;b.h.typeGen="aObolSquare";b.h.ID=1;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CARD_DROP_CHANCE";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolSilverCard",a);a=newl();b=newl();b.h.displayName="Golden_Obol_of|Cards";b.h.sellPrice=8;b.h.typeGen="aObolHexagon";b.h.ID=2;b.h.Type="HEXAGON_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=2;b.h.WIS=2;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CARD_DROP_CHANCE";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolGoldCard",a);a=newl();b=newl();b.h.displayName="Platinum_Obol_of|Cards";b.h.sellPrice=20;b.h.typeGen="aObolHexagon";b.h.ID=3;b.h.Type="HEXAGON_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CARD_DROP_CHANCE";b.h.UQ1val=7;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPlatinumCard",a);a=newl();b=newl();b.h.displayName="Dementia_Obol_of|Cards";b.h.sellPrice=50;b.h.typeGen="aObolSparkle";b.h.ID=4;b.h.Type="SPARKLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CARD_DROP_CHANCE";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPinkCard",a);a=newl();b=newl();b.h.displayName="Bronze_Obol_of|Defence";b.h.sellPrice=1;b.h.typeGen="aObolCircle";b.h.ID=0;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolBronzeDef",a);a=newl();b=newl();b.h.displayName="Silver_Obol_of|Defence";b.h.sellPrice=3;b.h.typeGen="aObolCircle";b.h.ID=1;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolSilverDef",a);a=newl();b=newl();b.h.displayName="Golden_Obol_of|Defence";b.h.sellPrice=8;b.h.typeGen="aObolSquare";b.h.ID=2;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=6;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolGoldDef",a);a=newl();b=newl();b.h.displayName="Platinum_Obol_of|Defense_with_an_S";b.h.sellPrice=20;b.h.typeGen="aObolHexagon";b.h.ID=3;b.h.Type="HEXAGON_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=15;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPlatinumDef",a);a=newl();b=newl();b.h.displayName="Dementia_Obol_of|Defence";b.h.sellPrice=50;b.h.typeGen="aObolSparkle";b.h.ID=4;b.h.Type="SPARKLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=25;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPinkDef",a);a=newl();b=newl();b.h.displayName="Bronze_Obol_of|Trapping";b.h.sellPrice=1;b.h.typeGen="aObolCircle";b.h.ID=0;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolBronzeTrapping",a);a=newl();b=newl();b.h.displayName="Silver_Obol_of|Trapping";b.h.sellPrice=3;b.h.typeGen="aObolCircle";b.h.ID=1;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=1;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolSilverTrapping",a);a=newl();b=newl();b.h.displayName="Golden_Obol_of|Trapping";b.h.sellPrice=8;b.h.typeGen="aObolSquare";b.h.ID=2;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=0;b.h.AGI=2;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolGoldTrapping",a);a=newl();b=newl();b.h.displayName="Platinum_Obol_of|Trapping";b.h.sellPrice=20;b.h.typeGen="aObolHexagon";b.h.ID=3;b.h.Type="HEXAGON_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=0;b.h.AGI=3;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPlatinumTrapping",a);a=newl();b=newl();b.h.displayName="Dementia_Obol_of|Trapping";b.h.sellPrice=50;b.h.typeGen="aObolSparkle";b.h.ID=4;b.h.Type="SPARKLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=7;b.h.STR=0;b.h.AGI=5;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPinkTrapping",a);a=newl();b=newl();b.h.displayName="Bronze_Obol_of|Construction";b.h.sellPrice=1;b.h.typeGen="aObolCircle";b.h.ID=0;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_BUILD_SPD";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolBronzeCons",a);a=newl();b=newl();b.h.displayName="Silver_Obol_of|Construction";b.h.sellPrice=3;b.h.typeGen="aObolCircle";b.h.ID=1;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_BUILD_SPD";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolSilverCons",a);a=newl();b=newl();b.h.displayName="Golden_Obol_of|Construction";b.h.sellPrice=8;b.h.typeGen="aObolSquare";b.h.ID=2;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_BUILD_SPD";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolGoldCons",a);a=newl();b=newl();b.h.displayName="Platinum_Obol_of|Construction";b.h.sellPrice=20;b.h.typeGen="aObolHexagon";b.h.ID=3;b.h.Type="HEXAGON_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_BUILD_SPD";b.h.UQ1val=12;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPlatinumCons",a);a=newl();b=newl();b.h.displayName="Dementia_Obol_of|Construction";b.h.sellPrice=50;b.h.typeGen="aObolSparkle";b.h.ID=4;b.h.Type="SPARKLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=5;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_BUILD_SPD";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPinkCons",a);a=newl();b=newl();b.h.displayName="Bronze_Obol_of|Worship";b.h.sellPrice=1;b.h.typeGen="aObolCircle";b.h.ID=0;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolBronzeWorship",a);a=newl();b=newl();b.h.displayName="Silver_Obol_of|Worship";b.h.sellPrice=3;b.h.typeGen="aObolCircle";b.h.ID=1;b.h.Type="CIRCLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolSilverWorship",a);a=newl();b=newl();b.h.displayName="Golden_Obol_of|Worship";b.h.sellPrice=8;b.h.typeGen="aObolSquare";b.h.ID=2;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=0;b.h.AGI=0;b.h.WIS=2;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolGoldWorship",a);a=newl();b=newl();b.h.displayName="Platinum_Obol_of|Worship";b.h.sellPrice=20;b.h.typeGen="aObolHexagon";b.h.ID=3;b.h.Type="HEXAGON_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=0;b.h.AGI=0;b.h.WIS=3;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPlatinumWorship",a);a=newl();b=newl();b.h.displayName="Dementia_Obol_of|Worship";b.h.sellPrice=50;b.h.typeGen="aObolSparkle";b.h.ID=4;b.h.Type="SPARKLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=7;b.h.STR=0;b.h.AGI=0;b.h.WIS=5;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolPinkWorship",a);a=newl();b=newl();b.h.displayName="Granite_Obol_of|Amarok's_Stare";b.h.sellPrice=20;b.h.typeGen="aObolHexagon";b.h.ID=3;b.h.Type="HEXAGON_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=2;b.h.WIS=2;b.h.LUK=2;b.h.Defence=5;b.h.UQ1txt="%_DEFENCE";b.h.UQ1val=4;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolAmarokA",a);a=newl();b=newl();b.h.displayName="Skeletal_Obol_of|Efaunt's_Gaze";b.h.sellPrice=20;b.h.typeGen="aObolHexagon";b.h.ID=3;b.h.Type="HEXAGON_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=0;b.h.UQ1txt="%_BOSS_DAMAGE";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolEfauntA",a);a=newl();b=newl();b.h.displayName="Frozen_Obol_of|Chizoar's_Rage";b.h.sellPrice=20;b.h.typeGen="aObolHexagon";b.h.ID=3;b.h.Type="HEXAGON_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=2;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=4;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolChizoarA",a);a=newl();b=newl();b.h.displayName="Slushy_Obol_of|Much_Dilapidation";b.h.sellPrice=20;b.h.typeGen="aObolHexagon";b.h.ID=3;b.h.Type="HEXAGON_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=4;b.h.AGI=4;b.h.WIS=4;b.h.LUK=4;b.h.Defence=0;b.h.UQ1txt="%_SKILL_EFFICIENCY";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolSlush",a);a=newl();b=newl();b.h.displayName="Magma_Obol_of|Big_Time_Domeo";b.h.sellPrice=20;b.h.typeGen="aObolHexagon";b.h.ID=3;b.h.Type="HEXAGON_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=10;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=14;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolLava",a);a=newl();b=newl();b.h.displayName="Jagged_Obol_of|Massive_Trolling";b.h.sellPrice=50;b.h.typeGen="aObolSparkle";b.h.ID=4;b.h.Type="SPARKLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=9;b.h.AGI=9;b.h.WIS=9;b.h.LUK=9;b.h.Defence=10;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolTroll",a);a=newl();b=newl();b.h.displayName="Grumpy_Obol_of|the_Grandfrogger";b.h.sellPrice=50;b.h.typeGen="aObolSquare";b.h.ID=2;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=2;b.h.UQ1txt="%_MONEY";b.h.UQ1val=12;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=1;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolFrog",a);a=newl();b=newl();b.h.displayName="Vigilant_Obol_of|Ice_Guard";b.h.sellPrice=50;b.h.typeGen="aObolSquare";b.h.ID=2;b.h.Type="SQUARE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=3;b.h.Defence=5;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=8;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolKnight",a);a=newl();b=newl();b.h.displayName="Molten_Obol_of|Dead_Divine";b.h.sellPrice=50;b.h.typeGen="aObolSparkle";b.h.ID=4;b.h.Type="SPARKLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=7;b.h.STR=15;b.h.AGI=15;b.h.WIS=15;b.h.LUK=15;b.h.Defence=0;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=5;b.h.UQ2txt="%_TOTAL_DAMAGE";b.h.UQ2val=2;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolKruk",a);a=newl();b=newl();b.h.displayName="Gilded_Obol_of|the_Emperor";b.h.sellPrice=50;b.h.typeGen="aObolSparkle";b.h.ID=4;b.h.Type="SPARKLE_OBOL";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=30;b.h.STR=100;b.h.AGI=100;b.h.WIS=100;b.h.LUK=100;b.h.Defence=50;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=10;b.h.UQ2txt="%_SKILL_EFFICIENCY";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("ObolEmp",a);a=newl();b=newl();b.h.displayName="Miniature_Mining|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=3;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=25;b.h.Class="Mining";b.h.Speed=-5;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagT2",a);a=newl();b=newl();b.h.displayName="Cramped_Mining|Pouch";b.h.sellPrice=900;b.h.typeGen="aCarryBag";b.h.ID=10;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="Mining";b.h.Speed=-25;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBag1",a);a=newl();b=newl();b.h.displayName="Small_Mining|Pouch";b.h.sellPrice=13e3;b.h.typeGen="aCarryBag";b.h.ID=20;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="Mining";b.h.Speed=118;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBag2",a);a=newl();b=newl();b.h.displayName="Average_Mining|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=30;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=250;b.h.Class="Mining";b.h.Speed=-5;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBag3",a);a=newl();b=newl();b.h.displayName="Sizable_Mining|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=40;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=500;b.h.Class="Mining";b.h.Speed=170;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBag4",a);a=newl();b=newl();b.h.displayName="Big_Mining|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=50;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1e3;b.h.Class="Mining";b.h.Speed=240;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBag5",a);a=newl();b=newl();b.h.displayName="Large_Mining|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=70;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=2e3;b.h.Class="Mining";b.h.Speed=240;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagMi6",a);a=newl();b=newl();b.h.displayName="Massive_Mining|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=100;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=5e3;b.h.Class="Mining";b.h.Speed=60;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagMi7",a);a=newl();b=newl();b.h.displayName="Volumetric_Mining|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=125;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1e4;b.h.Class="Mining";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagMi8",a);a=newl();b=newl();b.h.displayName="Colossal_Mining|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=150;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=2e4;b.h.Class="Mining";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagMi9",a);a=newl();b=newl();b.h.displayName="Gargantuan_Mining|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=350;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=25e3;b.h.Class="Mining";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagMi10",a);a=newl();b=newl();b.h.displayName="Herculean_Mining|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=500;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=3e4;b.h.Class="Mining";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagMi11",a);a=newl();b=newl();b.h.displayName="Enormous_Mining|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=650;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=35e3;b.h.Class="Mining";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagMi12",a);a=newl();b=newl();b.h.displayName="Miniature_Choppin|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=3;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=25;b.h.Class="Chopping";b.h.Speed=-5;b.h.Reach=10;b.h.Weapon_Power=1;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagT1",a);a=newl();b=newl();b.h.displayName="Cramped|Choppin_Pouch";b.h.sellPrice=1400;b.h.typeGen="aCarryBag";b.h.ID=10;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="Chopping";b.h.Speed=-25;b.h.Reach=10;b.h.Weapon_Power=1;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBag7",a);a=newl();b=newl();b.h.displayName="Small_Choppin|Pouch";b.h.sellPrice=10500;b.h.typeGen="aCarryBag";b.h.ID=20;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="Chopping";b.h.Speed=118;b.h.Reach=10;b.h.Weapon_Power=1;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBag9",a);a=newl();b=newl();b.h.displayName="Average_Choppin|Pouch";b.h.sellPrice=10500;b.h.typeGen="aCarryBag";b.h.ID=30;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=250;b.h.Class="Chopping";b.h.Speed=-5;b.h.Reach=10;b.h.Weapon_Power=1;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagT3",a);a=newl();b=newl();b.h.displayName="Sizable_Choppin|Pouch";b.h.sellPrice=10500;b.h.typeGen="aCarryBag";b.h.ID=40;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=500;b.h.Class="Chopping";b.h.Speed=170;b.h.Reach=10;b.h.Weapon_Power=1;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagT4",a);a=newl();b=newl();b.h.displayName="Big_Choppin|Pouch";b.h.sellPrice=10500;b.h.typeGen="aCarryBag";b.h.ID=50;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1e3;b.h.Class="Chopping";b.h.Speed=240;b.h.Reach=10;b.h.Weapon_Power=1;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagT5",a);a=newl();b=newl();b.h.displayName="Large_Choppin|Pouch";b.h.sellPrice=10500;b.h.typeGen="aCarryBag";b.h.ID=70;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=2e3;b.h.Class="Chopping";b.h.Speed=240;b.h.Reach=10;b.h.Weapon_Power=1;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagT6",a);a=newl();b=newl();b.h.displayName="Massive_Choppin|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=100;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=5e3;b.h.Class="Chopping";b.h.Speed=60;b.h.Reach=10;b.h.Weapon_Power=1;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagT7",a);a=newl();b=newl();b.h.displayName="Volumetric_Chopping|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=125;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1e4;b.h.Class="Chopping";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=1;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagT8",a);a=newl();b=newl();b.h.displayName="Colossal_Chopping|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=150;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=2e4;b.h.Class="Chopping";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=1;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagT9",a);a=newl();b=newl();b.h.displayName="Gargantuan_Chopping|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=350;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=25e3;b.h.Class="Chopping";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=1;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagT10",a);a=newl();b=newl();b.h.displayName="Herculean_Chopping|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=500;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=3e4;b.h.Class="Chopping";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=1;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagT11",a);a=newl();b=newl();b.h.displayName="Enormous_Chopping|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=650;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=35e3;b.h.Class="Chopping";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=1;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagT12",a);a=newl();b=newl();b.h.displayName="Miniscule_Food|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=5;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=25;b.h.Class="Foods";b.h.Speed=-5;b.h.Reach=10;b.h.Weapon_Power=2;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBag6",a);a=newl();b=newl();b.h.displayName="Cramped_Food|Pouch";b.h.sellPrice=5800;b.h.typeGen="aCarryBag";b.h.ID=10;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="Foods";b.h.Speed=-25;b.h.Reach=10;b.h.Weapon_Power=2;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBag8",a);a=newl();b=newl();b.h.displayName="Small_Food|Pouch";b.h.sellPrice=5800;b.h.typeGen="aCarryBag";b.h.ID=20;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="Foods";b.h.Speed=118;b.h.Reach=10;b.h.Weapon_Power=2;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBag10",a);a=newl();b=newl();b.h.displayName="Average_Food|Pouch";b.h.sellPrice=5800;b.h.typeGen="aCarryBag";b.h.ID=30;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=250;b.h.Class="Foods";b.h.Speed=-5;b.h.Reach=10;b.h.Weapon_Power=2;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagF3",a);a=newl();b=newl();b.h.displayName="Sizable_Food|Pouch";b.h.sellPrice=5800;b.h.typeGen="aCarryBag";b.h.ID=40;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=500;b.h.Class="Foods";b.h.Speed=170;b.h.Reach=10;b.h.Weapon_Power=2;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagF4",a);a=newl();b=newl();b.h.displayName="Big_Food|Pouch";b.h.sellPrice=5800;b.h.typeGen="aCarryBag";b.h.ID=50;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1e3;b.h.Class="Foods";b.h.Speed=240;b.h.Reach=10;b.h.Weapon_Power=2;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagF5",a);a=newl();b=newl();b.h.displayName="Large_Food|Pouch";b.h.sellPrice=5800;b.h.typeGen="aCarryBag";b.h.ID=70;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=2e3;b.h.Class="Foods";b.h.Speed=240;b.h.Reach=10;b.h.Weapon_Power=2;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagF6",a);a=newl();b=newl();b.h.displayName="Massive_Food|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=100;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=5e3;b.h.Class="Foods";b.h.Speed=60;b.h.Reach=10;b.h.Weapon_Power=2;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagF7",a);a=newl();b=newl();b.h.displayName="Volumetric_Food|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=125;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1e4;b.h.Class="Foods";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=2;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagF8",a);a=newl();b=newl();b.h.displayName="Colossal_Food|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=150;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=2e4;b.h.Class="Foods";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=2;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagF9",a);a=newl();b=newl();b.h.displayName="Gargantuan_Food|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=350;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=25e3;b.h.Class="Foods";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=2;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagF10",a);a=newl();b=newl();b.h.displayName="Herculean_Food|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=500;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=3e4;b.h.Class="Foods";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=2;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagF11",a);a=newl();b=newl();b.h.displayName="Enormous_Food|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=650;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=35e3;b.h.Class="Foods";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=2;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagF12",a);a=newl();b=newl();b.h.displayName="Mini_Materials|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=5;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=25;b.h.Class="bCraft";b.h.Speed=-10;b.h.Reach=10;b.h.Weapon_Power=3;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagM1",a);a=newl();b=newl();b.h.displayName="Cramped_Material|Pouch";b.h.sellPrice=4200;b.h.typeGen="aCarryBag";b.h.ID=5;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="bCraft";b.h.Speed=-15;b.h.Reach=10;b.h.Weapon_Power=3;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagM2",a);a=newl();b=newl();b.h.displayName="Small_Material|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=7;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="bCraft";b.h.Speed=118;b.h.Reach=10;b.h.Weapon_Power=3;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagM3",a);a=newl();b=newl();b.h.displayName="Average_Material|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=20;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=250;b.h.Class="bCraft";b.h.Speed=-5;b.h.Reach=10;b.h.Weapon_Power=3;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagM4",a);a=newl();b=newl();b.h.displayName="Sizable_Materials|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=35;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=500;b.h.Class="bCraft";b.h.Speed=170;b.h.Reach=10;b.h.Weapon_Power=3;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagM5",a);a=newl();b=newl();b.h.displayName="Big_Materials|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=50;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1e3;b.h.Class="bCraft";b.h.Speed=240;b.h.Reach=10;b.h.Weapon_Power=3;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagM6",a);a=newl();b=newl();b.h.displayName="Large_Materials|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=70;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=2e3;b.h.Class="bCraft";b.h.Speed=240;b.h.Reach=10;b.h.Weapon_Power=3;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagM7",a);a=newl();b=newl();b.h.displayName="Massive_Materials|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=100;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=5e3;b.h.Class="bCraft";b.h.Speed=60;b.h.Reach=10;b.h.Weapon_Power=3;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagM8",a);a=newl();b=newl();b.h.displayName="Volumetric_Matty|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=125;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1e4;b.h.Class="bCraft";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=3;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagM9",a);a=newl();b=newl();b.h.displayName="Colossal_Matty|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=150;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=2e4;b.h.Class="bCraft";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=3;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagM10",a);a=newl();b=newl();b.h.displayName="Gargantuan_Matty|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=350;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=25e3;b.h.Class="bCraft";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=3;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagM11",a);a=newl();b=newl();b.h.displayName="Herculean_Matty|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=500;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=3e4;b.h.Class="bCraft";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=3;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagM12",a);a=newl();b=newl();b.h.displayName="Enormous_Matty|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=650;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=35e3;b.h.Class="bCraft";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=3;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagM13",a);a=newl();b=newl();b.h.displayName="Miniature_Fish|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=5;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=25;b.h.Class="Fishing";b.h.Speed=-10;b.h.Reach=10;b.h.Weapon_Power=4;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagFi0",a);a=newl();b=newl();b.h.displayName="Cramped_Fish|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=10;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="Fishing";b.h.Speed=-25;b.h.Reach=10;b.h.Weapon_Power=4;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagFi1",a);a=newl();b=newl();b.h.displayName="Small_Fish|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=20;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="Fishing";b.h.Speed=118;b.h.Reach=10;b.h.Weapon_Power=4;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagFi2",a);a=newl();b=newl();b.h.displayName="Average_Fish|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=30;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=250;b.h.Class="Fishing";b.h.Speed=-5;b.h.Reach=10;b.h.Weapon_Power=4;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagFi3",a);a=newl();b=newl();b.h.displayName="Sizable_Fish|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=40;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=500;b.h.Class="Fishing";b.h.Speed=170;b.h.Reach=10;b.h.Weapon_Power=4;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagFi4",a);a=newl();b=newl();b.h.displayName="Big_Fish|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=50;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1e3;b.h.Class="Fishing";b.h.Speed=240;b.h.Reach=10;b.h.Weapon_Power=4;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagFi5",a);a=newl();b=newl();b.h.displayName="Large_Fish|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=70;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=2e3;b.h.Class="Fishing";b.h.Speed=240;b.h.Reach=10;b.h.Weapon_Power=4;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagFi6",a);a=newl();b=newl();b.h.displayName="Massive_Fish|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=100;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=5e3;b.h.Class="Fishing";b.h.Speed=60;b.h.Reach=10;b.h.Weapon_Power=4;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagFi7",a);a=newl();b=newl();b.h.displayName="Volumetric_Fish|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=125;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1e4;b.h.Class="Fishing";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=4;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagFi8",a);a=newl();b=newl();b.h.displayName="Colossal_Fish|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=150;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=2e4;b.h.Class="Fishing";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=4;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagFi9",a);a=newl();b=newl();b.h.displayName="Gargantuan_Fish|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=350;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=25e3;b.h.Class="Fishing";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=4;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagFi10",a);a=newl();b=newl();b.h.displayName="Herculean_Fish|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=500;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=3e4;b.h.Class="Fishing";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=4;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagFi11",a);a=newl();b=newl();b.h.displayName="Enormous_Fish|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=650;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=35e3;b.h.Class="Fishing";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=4;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagFi12",a);a=newl();b=newl();b.h.displayName="Miniature_Bug|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=5;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=25;b.h.Class="Bugs";b.h.Speed=-5;b.h.Reach=10;b.h.Weapon_Power=5;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagB0",a);a=newl();b=newl();b.h.displayName="Cramped_Bug|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=10;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="Bugs";b.h.Speed=-250;b.h.Reach=10;b.h.Weapon_Power=5;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagB1",a);a=newl();b=newl();b.h.displayName="Small_Bug|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=20;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="Bugs";b.h.Speed=118;b.h.Reach=10;b.h.Weapon_Power=5;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagB2",a);a=newl();b=newl();b.h.displayName="Average_Bug|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=30;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=250;b.h.Class="Bugs";b.h.Speed=-5;b.h.Reach=10;b.h.Weapon_Power=5;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagB3",a);a=newl();b=newl();b.h.displayName="Sizable_Bug|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=40;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=500;b.h.Class="Bugs";b.h.Speed=170;b.h.Reach=10;b.h.Weapon_Power=5;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagB4",a);a=newl();b=newl();b.h.displayName="Big_Bug|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=50;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1e3;b.h.Class="Bugs";b.h.Speed=240;b.h.Reach=10;b.h.Weapon_Power=5;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagB5",a);a=newl();b=newl();b.h.displayName="Large_Bug|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=70;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=2e3;b.h.Class="Bugs";b.h.Speed=240;b.h.Reach=10;b.h.Weapon_Power=5;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagB6",a);a=newl();b=newl();b.h.displayName="Massive_Bug|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=100;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=5e3;b.h.Class="Bugs";b.h.Speed=60;b.h.Reach=10;b.h.Weapon_Power=5;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagB7",a);a=newl();b=newl();b.h.displayName="Volumetric_Bug|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=125;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1e4;b.h.Class="Bugs";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=5;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagB8",a);a=newl();b=newl();b.h.displayName="Colossal_Bug|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=150;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=2e4;b.h.Class="Bugs";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=5;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagB9",a);a=newl();b=newl();b.h.displayName="Gargantuan_Bug|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=350;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=25e3;b.h.Class="Bugs";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=5;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagB10",a);a=newl();b=newl();b.h.displayName="Herculean_Bug|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=500;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=3e4;b.h.Class="Bugs";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=5;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagB11",a);a=newl();b=newl();b.h.displayName="Enormous_Bug|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=650;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=35e3;b.h.Class="Bugs";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=5;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagB12",a);a=newl();b=newl();b.h.displayName="Cramped_Critter|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=15;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="Critters";b.h.Speed=-250;b.h.Reach=10;b.h.Weapon_Power=6;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagTr0",a);a=newl();b=newl();b.h.displayName="Small_Critter|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=25;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="Critters";b.h.Speed=118;b.h.Reach=10;b.h.Weapon_Power=6;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagTr1",a);a=newl();b=newl();b.h.displayName="Average_Critter|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=35;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=250;b.h.Class="Critters";b.h.Speed=-5;b.h.Reach=10;b.h.Weapon_Power=6;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagTr2",a);a=newl();b=newl();b.h.displayName="Sizable_Critter|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=45;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=500;b.h.Class="Critters";b.h.Speed=170;b.h.Reach=10;b.h.Weapon_Power=6;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagTr3",a);a=newl();b=newl();b.h.displayName="Big_Critter|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=55;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1e3;b.h.Class="Critters";b.h.Speed=240;b.h.Reach=10;b.h.Weapon_Power=6;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagTr4",a);a=newl();b=newl();b.h.displayName="Large_Critter|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=75;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=2e3;b.h.Class="Critters";b.h.Speed=240;b.h.Reach=10;b.h.Weapon_Power=6;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagTr5",a);a=newl();b=newl();b.h.displayName="Massive_Critter|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=100;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=5e3;b.h.Class="Critters";b.h.Speed=60;b.h.Reach=10;b.h.Weapon_Power=6;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagTr6",a);a=newl();b=newl();b.h.displayName="Volumetric_Critta|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=125;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1e4;b.h.Class="Critters";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=6;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagTr7",a);a=newl();b=newl();b.h.displayName="Colossal_Critta|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=150;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=2e4;b.h.Class="Critters";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=6;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagTr8",a);a=newl();b=newl();b.h.displayName="Gargantuan_Critta|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=350;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=25e3;b.h.Class="Critters";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=6;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagTr9",a);a=newl();b=newl();b.h.displayName="Herculean_Critta|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=500;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=3e4;b.h.Class="Critters";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=6;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagTr10",a);a=newl();b=newl();b.h.displayName="Enormous_Critta|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=650;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=35e3;b.h.Class="Critters";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=6;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagTr11",a);a=newl();b=newl();b.h.displayName="Cramped_Soul|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=15;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="Souls";b.h.Speed=-250;b.h.Reach=10;b.h.Weapon_Power=7;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagS0",a);a=newl();b=newl();b.h.displayName="Small_Soul|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=25;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="Souls";b.h.Speed=118;b.h.Reach=10;b.h.Weapon_Power=7;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagS1",a);a=newl();b=newl();b.h.displayName="Average_Soul|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=35;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=250;b.h.Class="Souls";b.h.Speed=-5;b.h.Reach=10;b.h.Weapon_Power=7;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagS2",a);a=newl();b=newl();b.h.displayName="Sizable_Soul|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=45;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=500;b.h.Class="Souls";b.h.Speed=170;b.h.Reach=10;b.h.Weapon_Power=7;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagS3",a);a=newl();b=newl();b.h.displayName="Big_Soul|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=55;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1e3;b.h.Class="Souls";b.h.Speed=240;b.h.Reach=10;b.h.Weapon_Power=7;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagS4",a);a=newl();b=newl();b.h.displayName="Large_Soul|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=75;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=2e3;b.h.Class="Souls";b.h.Speed=240;b.h.Reach=10;b.h.Weapon_Power=7;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagS5",a);a=newl();b=newl();b.h.displayName="Massive_Soul|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=100;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=5e3;b.h.Class="Souls";b.h.Speed=60;b.h.Reach=10;b.h.Weapon_Power=7;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagS6",a);a=newl();b=newl();b.h.displayName="Volumetric_Soul|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=125;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1e4;b.h.Class="Souls";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=7;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagS7",a);a=newl();b=newl();b.h.displayName="Colossal_Soul|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=150;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=2e4;b.h.Class="Souls";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=7;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagS8",a);a=newl();b=newl();b.h.displayName="Gargantuan_Soul|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=350;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=25e3;b.h.Class="Souls";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=7;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagS9",a);a=newl();b=newl();b.h.displayName="Herculean_Soul|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=500;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=3e4;b.h.Class="Souls";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=7;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagS10",a);a=newl();b=newl();b.h.displayName="Enormous_Soul|Pouch";b.h.sellPrice=200;b.h.typeGen="aCarryBag";b.h.ID=650;b.h.Type="CARRY_BAG";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=35e3;b.h.Class="Souls";b.h.Speed=0;b.h.Reach=10;b.h.Weapon_Power=7;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;T.addNewEquip("MaxCapBagS11",a);a=newl();b=newl();b.h.displayName="Forest_Villa_Key";b.h.sellPrice=50;b.h.typeGen="dCurrency";b.h.ID=0;b.h.Type="BOSS_KEY";b.h.lvReqToCraft="KeysAll";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_these_Forest_Boss_Keys_to_your_account._Account_items_are_shared_between_all_your_Characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Key1",a);a=newl();b=newl();b.h.displayName="Efaunt's_Tomb_Key";b.h.sellPrice=50;b.h.typeGen="dCurrency";b.h.ID=1;b.h.Type="BOSS_KEY";b.h.lvReqToCraft="KeysAll";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_these_Desert_Boss_Keys_to_your_account.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Key2",a);a=newl();b=newl();b.h.displayName="Chizoar's_Cavern|Key";b.h.sellPrice=50;b.h.typeGen="dCurrency";b.h.ID=2;b.h.Type="BOSS_KEY";b.h.lvReqToCraft="KeysAll";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_these_Tundra_Boss_Keys_to_your_account.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Key3",a);a=newl();b=newl();b.h.displayName="Troll's_Enclave|Key";b.h.sellPrice=50;b.h.typeGen="dCurrency";b.h.ID=3;b.h.Type="BOSS_KEY";b.h.lvReqToCraft="KeysAll";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_these_Nebula_Boss_Keys_to_your_account.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Key4",a);a=newl();b=newl();b.h.displayName="Kruk's_Volcano|Key";b.h.sellPrice=50;b.h.typeGen="dCurrency";b.h.ID=4;b.h.Type="BOSS_KEY";b.h.lvReqToCraft="KeysAll";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_these_Plateau_Boss_Keys_to_your_account.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Key5",a);a=newl();b=newl();b.h.displayName="Obol_Fragment";b.h.sellPrice=50;b.h.typeGen="dCurrency";b.h.ID=-1;b.h.Type="OBOL_FRAGMENT";b.h.lvReqToCraft="ObolFragments";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_these_Obol_Fragments_to_your_account._Account_items_are_shared_between_all_your_Characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("ObolFrag",a);a=newl();b=newl();b.h.displayName="Double_AFK_Gain|Ticket";b.h.sellPrice=50;b.h.typeGen="dCurrency";b.h.ID=-1;b.h.Type="TICKET";b.h.lvReqToCraft="AFKdoubles";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_these_Double_AFK_tickets_to_your_account._Account_items_are_shared_between_all_your_Characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("DoubleAFKtix",a);a=newl();b=newl();b.h.displayName="Colosseum_Ticket";b.h.sellPrice=50;b.h.typeGen="dCurrency";b.h.ID=-1;b.h.Type="TICKET";b.h.lvReqToCraft="ColosseumTickets";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_these_Colosseum_tickets_to_your_account._Account_items_are_shared_between_all_your_Characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("TixCol",a);a=newl();b=newl();b.h.displayName="Delivery_Box";b.h.sellPrice=50;b.h.typeGen="dCurrency";b.h.ID=-1;b.h.Type="BOX";b.h.lvReqToCraft="DeliveryBoxMisc";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_these_Delivery_Boxes_to_your_Post-Office_Upgrade_amount!_These_will_be_shared_between_all_your_Characters!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("DeliveryBox",a);a=newl();b=newl();b.h.displayName="Silver_Pen";b.h.sellPrice=50;b.h.typeGen="dCurrency";b.h.ID=-1;b.h.Type="OFFICE_PEN";b.h.lvReqToCraft="SilverPens";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_a_Silver_Pen_to_your_Post-Office!_You_can_use_it_to_skip_a_Delivery!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("SilverPen",a);a=newl();b=newl();b.h.displayName="Gem";b.h.sellPrice=69;b.h.typeGen="dCurrency";b.h.ID=-1;b.h.Type="GEM";b.h.lvReqToCraft="Gems";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_these_gems_to_your_account._You_can_then_spend_them_in_the_Gem_Shop!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("PremiumGem",a);a=newl();b=newl();b.h.displayName="Talent_Point|Tab_1";b.h.sellPrice=1;b.h.typeGen="dCurrency";b.h.ID=0;b.h.Type="TALENT_POINT";b.h.lvReqToCraft="TalentPoints";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_gain_a_Talent_Point_for_the_first_tab_of_talents._THIS_APPLIES_TO_ALL_CHARACTERS,_even_ones_you_haven't_made_yet,_so_it_doesn't_matter_which_character_uses_this_item.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("TalentPoint1",a);a=newl();b=newl();b.h.displayName="Talent_Point|Tab_2";b.h.sellPrice=1;b.h.typeGen="dCurrency";b.h.ID=1;b.h.Type="TALENT_POINT";b.h.lvReqToCraft="TalentPoints";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_gain_a_Talent_Point_for_the_second_tab_of_talents._THIS_APPLIES_TO_ALL_CHARACTERS,_even_ones_you_haven't_made_yet,_so_it_doesn't_matter_which_character_uses_this_item.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("TalentPoint2",a);a=newl();b=newl();b.h.displayName="Talent_Point|Tab_3";b.h.sellPrice=1;b.h.typeGen="dCurrency";b.h.ID=2;b.h.Type="TALENT_POINT";b.h.lvReqToCraft="TalentPoints";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_gain_a_Talent_Point_for_the_third_tab_of_talents._THIS_APPLIES_TO_ALL_CHARACTERS,_even_ones_you_haven't_made_yet,_so_it_doesn't_matter_which_character_uses_this_item.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("TalentPoint3",a);a=newl();b=newl();b.h.displayName="Talent_Point|Tab_4";b.h.sellPrice=1;b.h.typeGen="dCurrency";b.h.ID=3;b.h.Type="TALENT_POINT";b.h.lvReqToCraft="TalentPoints";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_gain_a_Talent_Point_for_the_fourth_tab_of_talents._THIS_APPLIES_TO_ALL_CHARACTERS,_even_ones_you_haven't_made_yet,_so_it_doesn't_matter_which_character_uses_this_item.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("TalentPoint4",a);a=newl();b=newl();b.h.displayName="Talent_Point|Tab_5";b.h.sellPrice=1;b.h.typeGen="dCurrency";b.h.ID=4;b.h.Type="TALENT_POINT";b.h.lvReqToCraft="TalentPoints";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_gain_a_Talent_Point_for_the_fifth_tab_of_talents._THIS_APPLIES_TO_ALL_CHARACTERS,_even_ones_you_haven't_made_yet,_so_it_doesn't_matter_which_character_uses_this_item.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("TalentPoint5",a);a=newl();b=newl();b.h.displayName="Talent_Point|Special_Tab";b.h.sellPrice=1;b.h.typeGen="dCurrency";b.h.ID=5;b.h.Type="TALENT_POINT";b.h.lvReqToCraft="TalentPoints";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_gain_a_Talent_Point_for_the_Special_tab_of_talents._THIS_APPLIES_TO_ALL_CHARACTERS,_even_ones_you_haven't_made_yet,_so_it_doesn't_matter_which_character_uses_this_item.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("TalentPoint6",a);a=newl();b=newl();b.h.displayName="Gold_Food_Coupon";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="USABLE";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_receive_a_random_golden_food!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Gfoodcoupon",a);a=newl();b=newl();b.h.displayName="Statue_Coupon";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="USABLE";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_receive_a_random_Statue!_Rumor_has_it_that..._well..._I_shouldn't_spread_rumors,_that's_outside_of_my_Job_Description!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("GfoodcouponS",a);a=newl();b=newl();b.h.displayName="Resource_Coupon";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="USABLE";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="Hold_down,_and_a_resource_stack";b.h.desc_line2="will_drop_on_the_floor!";b.h.desc_line3="YOU_MUST_MANUALLY_PICK_UP";b.h.desc_line4="THE_RESOURCE_ON_THE_GROUND";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("ItemsCoupon1",a);a=newl();b=newl();b.h.displayName="Really_Really|Resource_Coupon";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="USABLE";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="Hold_down,_and_a_resource_stack";b.h.desc_line2="will_drop_on_the_floor!";b.h.desc_line3="YOU_MUST_MANUALLY_PICK_UP";b.h.desc_line4="THE_RESOURCE_ON_THE_GROUND";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("ItemsCoupon2",a);a=newl();b=newl();b.h.displayName="Employment|Statistics";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Wait_a_minute,_these_stats_have_misleading_Y-axes_and_invalid_sampling_methods!_Even_then,_they_show_no_clear_evidence_for_rats_stealing_jobs!_How_could_anyone_possibly_believe_this_data?";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Quest14",a);a=newl();b=newl();b.h.displayName="Red_Frisbee";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Sprout's_red_frisbee!_I_hope_you_didn't_get_shrunken_down_by_a_magic_apple_on_your_way_up,_or_your_stetchy_dog_brother_might_laugh_at_you!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Quest15",a);a=newl();b=newl();b.h.displayName="Broken_Mic";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="The_guy_who_carelessly_dropped_this_microphone_is_a_moron,_and_that's_a_fact._Boom,_mic_drop..._ah_crap.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Quest16",a);a=newl();b=newl();b.h.displayName="Loomi's_Room_Key";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="A_key_to_a_door,_but_there_are_still_more!_Why_so_many?_They_were_on_sale_for_a_penny!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Quest18",a);a=newl();b=newl();b.h.displayName="Golden_Dubloon";b.h.sellPrice=3500;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Avast,_land_lubber!_This_coin_be_property_of_the_YumYum_Sea_Pirates!_Ye_best_be_returning_it,_lest_ye_want_an_underwater_funeral,_arg!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Quest19",a);a=newl();b=newl();b.h.displayName="Signed_Arrest|Warrant";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="That's_weird,_Bandit_Bob's_signature_looks_an_awful_lot_like_yours...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Quest20",a);a=newl();b=newl();b.h.displayName="Time_Thingy";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Yea_yea_I_know,_this_quest_doesn't_really_make_sense._Although,_if_you_reeeaaally_think_about_it,_you'll_realize_that_it_still_makes_no_sense..._so_it's_best_not_to_think_about_it!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Quest21",a);a=newl();b=newl();b.h.displayName="Corporatube_Sub";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Represents_a_single_subscriber_on_the_Corporatube_Video_Platform._It_You'sed_to_be_called_something_else,_but_no_one_around_here_remembers.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Quest22",a);a=newl();b=newl();b.h.displayName="Instablab|Follower";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Represents_a_single_follower_on_Instablab,_who_probably_sound_like_this:_'Oh_mah_gawd_Becky,_you_would_not_Buh_Leeeeve_how_lame_this_game_I'm_playing_is._They_have_a_joke_about_Insta_that_tooootally_isn't_funnay,_like_seriouslayy!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Quest23",a);a=newl();b=newl();b.h.displayName="Cloudsound|Follower";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Represents_a_single_follower_on_Cloudsound._This_isn't_a_website,_it's_literally_a_giant_cloud_that_emits_sound_that_people_enjoy_following_around._Why,_what_were_YOU_thinking_this_was?";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Quest24",a);a=newl();b=newl();b.h.displayName="Birthday_Card";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_read_the_card!_There's_a_1_in_75_chance_it_contains_a_Birthday_Hat_recipe,_and_a_74_in_75_chance_it_contains_a..._well,_grandma_is_a_bit_off_these_days,_so_it'll_probably_be_a_mushroom_cap.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Quest25",a);a=newl();b=newl();b.h.displayName="Pre_Crime_Box";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="The_traditional_gift_given_to_those_about_to_be_victimized._A_favorite_amongst_criminals!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Quest26",a);a=newl();b=newl();b.h.displayName="Bag_o_Nuts";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Mmmmm,_these_nuts_are_so_yuuuummy!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Quest27",a);a=newl();b=newl();b.h.displayName="IOU_one_W7|Crystal";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Victorious_as_you_are,_I_cannot_give_you_the_crystal_to_unlock_World_7_at_this_time._Come_fight_me_later,_and_I_will_give_to_you_the_W7_crystal.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Quest28",a);a=newl();b=newl();b.h.displayName="Casual_Confidante";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_a_painting_of_a_strangely_out_of_place_gold_bar_fellow._They_look_nervous_underneath_their_outward_bravado.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("GoldricP1",a);a=newl();b=newl();b.h.displayName="Keychain_Fragment";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="KEY_FRAGMENT";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_these_to_add_them_to_your_account._You'll_be_spending_these_in_the_next_update_to_buy_keychains_at_the_Keychain_Pile,_which_will_be_in_the_next_update!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("KeyFrag",a);a=newl();b=newl();b.h.displayName="Dungeon_Credits";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CURRENCY";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_add_these_to_your_account._You_can_spend_dungeon_credits_in_any_Dungeon_Hub!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("DungCredits1",a);a=newl();b=newl();b.h.displayName="Loot_Dice";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CURRENCY";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_shouldn't_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("LootDice",a);a=newl();b=newl();b.h.displayName="Wispy_Tree_Log";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_seeing_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Tree7D",a);a=newl();b=newl();b.h.displayName="Platinum_Ore";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_seeing_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("PlatD",a);a=newl();b=newl();b.h.displayName="Goldfish";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_seeing_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Fish1D",a);a=newl();b=newl();b.h.displayName="Jellyfish";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_seeing_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Fish3D",a);a=newl();b=newl();b.h.displayName="Ice_Dollar";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Cool!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Cashb",a);a=newl();b=newl();b.h.displayName="Basement_Cube";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Cool!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;T.addNewQuest("Dung3Ice",a);""" # fmt: skip # noqa -# `scripts.ItemDefinitions4` in source. Last updated in v2.503 +# `scripts.ItemDefinitions4` in source. Last updated in v2.505 # paste body of the `make` function (excluding outer curly braces) # remove all spaces and newlines -script_item_definitions_4 = """R.itemDefs=newl();vara=newl(),b=newl();b.h.displayName="Pyromancer_Robes";b.h.sellPrice=1;b.h.typeGen="aGown";b.h.ID=1;b.h.Type="ATTIRE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=999;b.h.STR=1200;b.h.AGI=1200;b.h.WIS=1200;b.h.LUK=1200;b.h.Defence=3;b.h.UQ1txt="_FRAMES";b.h.UQ1val=163;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentGown0",a);a=newl();b=newl();b.h.displayName="Cobalt_Robe";b.h.sellPrice=1;b.h.typeGen="aGown";b.h.ID=2;b.h.Type="ATTIRE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=30;b.h.UQ1txt="%_DAMAGE_BONUS";b.h.UQ1val=100;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=60;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentGown1",a);a=newl();b=newl();b.h.displayName="Abyssal_Robe";b.h.sellPrice=1;b.h.typeGen="aGown";b.h.ID=3;b.h.Type="ATTIRE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=7;b.h.AGI=7;b.h.WIS=7;b.h.LUK=7;b.h.Defence=40;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=60;b.h.UQ2txt="%_DAMAGE_BONUS";b.h.UQ2val=50;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentGown2",a);a=newl();b=newl();b.h.displayName="Evergreen_Robe";b.h.sellPrice=1;b.h.typeGen="aGown";b.h.ID=4;b.h.Type="ATTIRE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=8;b.h.AGI=8;b.h.WIS=8;b.h.LUK=8;b.h.Defence=40;b.h.UQ1txt="%_BONUS_CLASS_EXP";b.h.UQ1val=100;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=75;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentGown3",a);a=newl();b=newl();b.h.displayName="Silkshard_Robe";b.h.sellPrice=1;b.h.typeGen="aGown";b.h.ID=5;b.h.Type="ATTIRE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=15;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=10;b.h.UQ1txt="%_BONUS_KILLS";b.h.UQ1val=100;b.h.UQ2txt="%_AFK_GAINS_MULTI";b.h.UQ2val=25;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentGown4",a);a=newl();b=newl();b.h.displayName="Corsair_Uniform";b.h.sellPrice=1;b.h.typeGen="aGown";b.h.ID=6;b.h.Type="ATTIRE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=20;b.h.STR=6;b.h.AGI=6;b.h.WIS=6;b.h.LUK=6;b.h.Defence=25;b.h.UQ1txt="%_BONUS_DROP_RATE";b.h.UQ1val=50;b.h.UQ2txt="%_EXTRA_MONEY";b.h.UQ2val=300;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentGown5",a);a=newl();b=newl();b.h.displayName="Bulwark_Armor";b.h.sellPrice=1;b.h.typeGen="aGown";b.h.ID=7;b.h.Type="ATTIRE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=25;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=50;b.h.UQ1txt="%_DAMAGE_BONUS";b.h.UQ1val=200;b.h.UQ2txt="%_BONUS_KILLS";b.h.UQ2val=150;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentGown6",a);a=newl();b=newl();b.h.displayName="Time_Traveler|Outfit";b.h.sellPrice=1;b.h.typeGen="aGown";b.h.ID=8;b.h.Type="ATTIRE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=25;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=50;b.h.UQ1txt="%_BONUS_MC_DROPS";b.h.UQ1val=300;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentGown7",a);a=newl();b=newl();b.h.displayName="Simple_Key_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain0",a);a=newl();b=newl();b.h.displayName="Leafy_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain1",a);a=newl();b=newl();b.h.displayName="Red_Sneaker_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain2",a);a=newl();b=newl();b.h.displayName="Wartooth_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain3",a);a=newl();b=newl();b.h.displayName="8_Ball_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain4",a);a=newl();b=newl();b.h.displayName="Piggy_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain5",a);a=newl();b=newl();b.h.displayName="Dumbphone_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain6",a);a=newl();b=newl();b.h.displayName="Horn_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain7",a);a=newl();b=newl();b.h.displayName="Rustic_Key_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain8",a);a=newl();b=newl();b.h.displayName="Taco_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain9",a);a=newl();b=newl();b.h.displayName="Cactus_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain10",a);a=newl();b=newl();b.h.displayName="Relic_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain11",a);a=newl();b=newl();b.h.displayName="Balloon_Dog_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain12",a);a=newl();b=newl();b.h.displayName="Frozen_Tart_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain13",a);a=newl();b=newl();b.h.displayName="Whatamelon_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain14",a);a=newl();b=newl();b.h.displayName="9_Ball_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain15",a);a=newl();b=newl();b.h.displayName="Pincer_Hand_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain16",a);a=newl();b=newl();b.h.displayName="Gilded_Key_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain17",a);a=newl();b=newl();b.h.displayName="Sushi_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain18",a);a=newl();b=newl();b.h.displayName="Time_Candy_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain19",a);a=newl();b=newl();b.h.displayName="Star_Blobulyte|Galaxy_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain20",a);a=newl();b=newl();b.h.displayName="Mmm_Donut_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain21",a);a=newl();b=newl();b.h.displayName="Negative_7_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain22",a);a=newl();b=newl();b.h.displayName="Diamond_Honker|Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain23",a);a=newl();b=newl();b.h.displayName="BobGoldPickle|Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain24",a);a=newl();b=newl();b.h.displayName="Eye_Owe_Ess_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=5;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain25",a);a=newl();b=newl();b.h.displayName="Key_to_Desert|Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=5;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain26",a);a=newl();b=newl();b.h.displayName="Key_to_Mountains|Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=5;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain27",a);a=newl();b=newl();b.h.displayName="Key_to_Purgatory|Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=5;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain28",a);a=newl();b=newl();b.h.displayName="Spiritlord_Horn|Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=400;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=25;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=5;b.h.UQ1txt="%_MONEY";b.h.UQ1val=30;b.h.UQ2txt="%_DAMAGE_MULTI";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain29",a);a=newl();b=newl();b.h.displayName="Junk_Pickaxe";b.h.sellPrice=50;b.h.typeGen="aPick";b.h.ID=0;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=3;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=1;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentTools1",a);a=newl();b=newl();b.h.displayName="Copper_Pickaxe";b.h.sellPrice=800;b.h.typeGen="aPick";b.h.ID=1;b.h.Type="PICKAXE";b.h.lvReqToCraft="4";a.h.common=b;b=newl();b.h.lvReqToEquip=3;b.h.Class="ALL";b.h.Speed=3;b.h.Reach=0;b.h.Weapon_Power=6;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("EquipmentTools2",a);a=newl();b=newl();b.h.displayName="Iron_Pickaxe";b.h.sellPrice=5e3;b.h.typeGen="aPick";b.h.ID=0;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=8;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=5;b.h.AGI=2;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("EquipmentTools3",a);a=newl();b=newl();b.h.displayName="Gold_Pickaxe";b.h.sellPrice=1e4;b.h.typeGen="aPick";b.h.ID=2;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=13;b.h.STR=8;b.h.AGI=3;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("EquipmentTools5",a);a=newl();b=newl();b.h.displayName="Platinum_Pickaxe";b.h.sellPrice=200;b.h.typeGen="aPick";b.h.ID=3;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=25;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=16;b.h.STR=11;b.h.AGI=4;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("EquipmentTools6",a);a=newl();b=newl();b.h.displayName="Dementia_Pickaxe";b.h.sellPrice=200;b.h.typeGen="aPick";b.h.ID=4;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=37;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=0;b.h.Weapon_Power=19;b.h.STR=15;b.h.AGI=5;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("EquipmentTools7",a);a=newl();b=newl();b.h.displayName="Void_Imperium_Pik";b.h.sellPrice=200;b.h.typeGen="aPick";b.h.ID=5;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=45;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=0;b.h.Weapon_Power=24;b.h.STR=18;b.h.AGI=6;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=8;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("EquipmentTools11",a);a=newl();b=newl();b.h.displayName="Lustre_Pickaxe";b.h.sellPrice=200;b.h.typeGen="aPick";b.h.ID=6;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=55;b.h.Class="ALL";b.h.Speed=6;b.h.Reach=0;b.h.Weapon_Power=30;b.h.STR=25;b.h.AGI=10;b.h.WIS=0;b.h.LUK=0;b.h.Defence=7;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=12;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("EquipmentTools8",a);a=newl();b=newl();b.h.displayName="Starfire_Pickaxe";b.h.sellPrice=200;b.h.typeGen="aPick";b.h.ID=2;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=65;b.h.Class="ALL";b.h.Speed=6;b.h.Reach=0;b.h.Weapon_Power=35;b.h.STR=30;b.h.AGI=12;b.h.WIS=0;b.h.LUK=0;b.h.Defence=15;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=16;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;R.addNewEquip("EquipmentTools12",a);a=newl();b=newl();b.h.displayName="Dreadlo_Pickolo";b.h.sellPrice=200;b.h.typeGen="aPick";b.h.ID=7;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=70;b.h.Class="ALL";b.h.Speed=7;b.h.Reach=0;b.h.Weapon_Power=42;b.h.STR=35;b.h.AGI=15;b.h.WIS=0;b.h.LUK=0;b.h.Defence=25;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;R.addNewEquip("EquipmentTools9",a);a=newl();b=newl();b.h.displayName="Marbiglass|Pickaxe";b.h.sellPrice=200;b.h.typeGen="aPick";b.h.ID=6;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=80;b.h.Class="ALL";b.h.Speed=7;b.h.Reach=0;b.h.Weapon_Power=51;b.h.STR=42;b.h.AGI=20;b.h.WIS=0;b.h.LUK=0;b.h.Defence=30;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=25;b.h.UQ2txt="%_MONEY";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=6;a.h.equip=b;R.addNewEquip("EquipmentTools14",a);a=newl();b=newl();b.h.displayName="Destroyer_of_the|Mollo_Gomme";b.h.sellPrice=200;b.h.typeGen="aPick";b.h.ID=8;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="ALL";b.h.Speed=8;b.h.Reach=0;b.h.Weapon_Power=62;b.h.STR=55;b.h.AGI=25;b.h.WIS=0;b.h.LUK=0;b.h.Defence=35;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=35;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=7;a.h.equip=b;R.addNewEquip("EquipmentTools15",a);a=newl();b=newl();b.h.displayName="Prehistoric|Pickaxe";b.h.sellPrice=200;b.h.typeGen="aPick";b.h.ID=9;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=110;b.h.Class="ALL";b.h.Speed=8;b.h.Reach=0;b.h.Weapon_Power=75;b.h.STR=80;b.h.AGI=30;b.h.WIS=0;b.h.LUK=0;b.h.Defence=45;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=50;b.h.UQ2txt="%_DAMAGE_BONUS";b.h.UQ2val=2;b.h.Upgrade_Slots_Left=8;a.h.equip=b;R.addNewEquip("EquipmentTools16",a);a=newl();b=newl();b.h.displayName="Poopy_Pickaxe";b.h.sellPrice=200;b.h.typeGen="aPick";b.h.ID=1;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=2;b.h.Reach=0;b.h.Weapon_Power=18;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=6;a.h.equip=b;R.addNewEquip("EquipmentTools10",a);a=newl();b=newl();b.h.displayName="Skewered_Snek";b.h.sellPrice=200;b.h.typeGen="aPick";b.h.ID=1;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=10;b.h.Class="ALL";b.h.Speed=2;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=0;b.h.AGI=0;b.h.WIS=12;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CHOP_EFFICIENCY";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=6;a.h.equip=b;R.addNewEquip("EquipmentTools13",a);a=newl();b=newl();b.h.displayName="Old_Hatchet";b.h.sellPrice=50;b.h.typeGen="aHatchet";b.h.ID=0;b.h.Type="HATCHET";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=3;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=0;b.h.AGI=0;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet0",a);a=newl();b=newl();b.h.displayName="Copper_Chopper";b.h.sellPrice=650;b.h.typeGen="aHatchet";b.h.ID=2;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=3;b.h.Reach=0;b.h.Weapon_Power=7;b.h.STR=0;b.h.AGI=1;b.h.WIS=3;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet3",a);a=newl();b=newl();b.h.displayName="Iron_Hatchet";b.h.sellPrice=5e3;b.h.typeGen="aHatchet";b.h.ID=0;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=8;b.h.Class="ALL";b.h.Speed=3;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=2;b.h.AGI=0;b.h.WIS=5;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet1",a);a=newl();b=newl();b.h.displayName="Stinky_Axe";b.h.sellPrice=1e4;b.h.typeGen="aHatchet";b.h.ID=2;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=2;b.h.Reach=0;b.h.Weapon_Power=18;b.h.STR=0;b.h.AGI=0;b.h.WIS=8;b.h.LUK=4;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=6;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet2b",a);a=newl();b=newl();b.h.displayName="Golden_Axe";b.h.sellPrice=12e3;b.h.typeGen="aHatchet";b.h.ID=1;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=14;b.h.STR=0;b.h.AGI=0;b.h.WIS=8;b.h.LUK=4;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet2",a);a=newl();b=newl();b.h.displayName="Plat_Hatchet";b.h.sellPrice=200;b.h.typeGen="aHatchet";b.h.ID=3;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=20;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=18;b.h.STR=0;b.h.AGI=5;b.h.WIS=14;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet4",a);a=newl();b=newl();b.h.displayName="Dementia_Dicer";b.h.sellPrice=200;b.h.typeGen="aHatchet";b.h.ID=4;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=25;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=0;b.h.Weapon_Power=23;b.h.STR=0;b.h.AGI=6;b.h.WIS=17;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet5",a);a=newl();b=newl();b.h.displayName="Void_Imperium_Axe";b.h.sellPrice=200;b.h.typeGen="aHatchet";b.h.ID=6;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=0;b.h.Weapon_Power=26;b.h.STR=0;b.h.AGI=7;b.h.WIS=20;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet7",a);a=newl();b=newl();b.h.displayName="Lustre_Logger";b.h.sellPrice=200;b.h.typeGen="aHatchet";b.h.ID=5;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=40;b.h.Class="ALL";b.h.Speed=6;b.h.Reach=0;b.h.Weapon_Power=29;b.h.STR=0;b.h.AGI=0;b.h.WIS=24;b.h.LUK=8;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet6",a);a=newl();b=newl();b.h.displayName="Starfire_Hatchet";b.h.sellPrice=200;b.h.typeGen="aHatchet";b.h.ID=7;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="ALL";b.h.Speed=6;b.h.Reach=0;b.h.Weapon_Power=35;b.h.STR=0;b.h.AGI=9;b.h.WIS=28;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet8",a);a=newl();b=newl();b.h.displayName="Dreadlo_Hatchet";b.h.sellPrice=200;b.h.typeGen="aHatchet";b.h.ID=8;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=65;b.h.Class="ALL";b.h.Speed=7;b.h.Reach=0;b.h.Weapon_Power=40;b.h.STR=4;b.h.AGI=4;b.h.WIS=32;b.h.LUK=4;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet9",a);a=newl();b=newl();b.h.displayName="Marbiglass|Hatchet";b.h.sellPrice=200;b.h.typeGen="aHatchet";b.h.ID=5;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=75;b.h.Class="ALL";b.h.Speed=8;b.h.Reach=0;b.h.Weapon_Power=50;b.h.STR=5;b.h.AGI=5;b.h.WIS=40;b.h.LUK=5;b.h.Defence=0;b.h.UQ1txt="%_CHOP_EFFICIENCY";b.h.UQ1val=5;b.h.UQ2txt="%_MONEY";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=6;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet12",a);a=newl();b=newl();b.h.displayName="Annihilator_of|the_Yggdrasil";b.h.sellPrice=200;b.h.typeGen="aHatchet";b.h.ID=9;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=90;b.h.Class="ALL";b.h.Speed=8;b.h.Reach=0;b.h.Weapon_Power=62;b.h.STR=8;b.h.AGI=8;b.h.WIS=50;b.h.LUK=8;b.h.Defence=0;b.h.UQ1txt="%_CHOP_EFFICIENCY";b.h.UQ1val=12;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=7;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet10",a);a=newl();b=newl();b.h.displayName="Grumbie_the|Hatchet_Hammer";b.h.sellPrice=200;b.h.typeGen="aHatchet";b.h.ID=2;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=10;b.h.Class="ALL";b.h.Speed=2;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=12;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=6;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet11",a);a=newl();b=newl();b.h.displayName="Prehistoric|Choppah";b.h.sellPrice=200;b.h.typeGen="aHatchet";b.h.ID=10;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="ALL";b.h.Speed=9;b.h.Reach=0;b.h.Weapon_Power=75;b.h.STR=0;b.h.AGI=0;b.h.WIS=100;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CHOP_EFFICIENCY";b.h.UQ1val=25;b.h.UQ2txt="%_DAMAGE_BONUS";b.h.UQ2val=2;b.h.Upgrade_Slots_Left=8;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet13",a);a=newl();b=newl();b.h.displayName="Wood_Fishing_Rod";b.h.sellPrice=200;b.h.typeGen="aFishingRod";b.h.ID=0;b.h.Type="FISHING_ROD";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=3;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=1;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("FishingRod1",a);a=newl();b=newl();b.h.displayName="Copper_Fish_Rod";b.h.sellPrice=500;b.h.typeGen="aFishingRod";b.h.ID=0;b.h.Type="FISHING_ROD";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=3;b.h.Reach=0;b.h.Weapon_Power=8;b.h.STR=2;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("FishingRod2",a);a=newl();b=newl();b.h.displayName="Iron_Fishing_Rod";b.h.sellPrice=2500;b.h.typeGen="aFishingRod";b.h.ID=1;b.h.Type="FISHING_ROD";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=9;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=13;b.h.STR=4;b.h.AGI=0;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("FishingRod3",a);a=newl();b=newl();b.h.displayName="Gold_Fishing_Rod";b.h.sellPrice=1e4;b.h.typeGen="aFishingRod";b.h.ID=2;b.h.Type="FISHING_ROD";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=19;b.h.STR=6;b.h.AGI=0;b.h.WIS=0;b.h.LUK=4;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("FishingRod4",a);a=newl();b=newl();b.h.displayName="Plat_Fishing_Rod";b.h.sellPrice=2e4;b.h.typeGen="aFishingRod";b.h.ID=3;b.h.Type="FISHING_ROD";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=25;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=0;b.h.Weapon_Power=25;b.h.STR=9;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("FishingRod5",a);a=newl();b=newl();b.h.displayName="Dementia_Rod|for_Fishing";b.h.sellPrice=2e4;b.h.typeGen="aFishingRod";b.h.ID=4;b.h.Type="FISHING_ROD";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=33;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=0;b.h.Weapon_Power=30;b.h.STR=12;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("FishingRod6",a);a=newl();b=newl();b.h.displayName="Void_Imperium_Rod";b.h.sellPrice=2e4;b.h.typeGen="aFishingRod";b.h.ID=5;b.h.Type="FISHING_ROD";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=40;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=0;b.h.Weapon_Power=36;b.h.STR=15;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("FishingRod7",a);a=newl();b=newl();b.h.displayName="Lustre_Rod";b.h.sellPrice=2e4;b.h.typeGen="aFishingRod";b.h.ID=6;b.h.Type="FISHING_ROD";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=45;b.h.Class="ALL";b.h.Speed=6;b.h.Reach=0;b.h.Weapon_Power=43;b.h.STR=20;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("FishingRod8",a);a=newl();b=newl();b.h.displayName="Starfire_Rod";b.h.sellPrice=1e4;b.h.typeGen="aFishingRod";b.h.ID=2;b.h.Type="FISHING_ROD";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="ALL";b.h.Speed=6;b.h.Reach=0;b.h.Weapon_Power=50;b.h.STR=25;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;R.addNewEquip("FishingRod9",a);a=newl();b=newl();b.h.displayName="Dreadlo_Rod";b.h.sellPrice=1e4;b.h.typeGen="aFishingRod";b.h.ID=1;b.h.Type="FISHING_ROD";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=60;b.h.Class="ALL";b.h.Speed=7;b.h.Reach=0;b.h.Weapon_Power=60;b.h.STR=35;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;R.addNewEquip("FishingRod10",a);a=newl();b=newl();b.h.displayName="Marbiglass_Rod";b.h.sellPrice=1e4;b.h.typeGen="aFishingRod";b.h.ID=6;b.h.Type="FISHING_ROD";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=75;b.h.Class="ALL";b.h.Speed=7;b.h.Reach=0;b.h.Weapon_Power=72;b.h.STR=50;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_FISHIN_EFFICINCY";b.h.UQ1val=5;b.h.UQ2txt="%_MONEY";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=6;a.h.equip=b;R.addNewEquip("FishingRod11",a);a=newl();b=newl();b.h.displayName="Angler_of_the|Iliunne";b.h.sellPrice=1e4;b.h.typeGen="aFishingRod";b.h.ID=7;b.h.Type="FISHING_ROD";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=90;b.h.Class="ALL";b.h.Speed=8;b.h.Reach=0;b.h.Weapon_Power=85;b.h.STR=75;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_FISHIN_EFFICINCY";b.h.UQ1val=12;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=7;a.h.equip=b;R.addNewEquip("FishingRod12",a);a=newl();b=newl();b.h.displayName="Prehistoric|Rod";b.h.sellPrice=1e4;b.h.typeGen="aFishingRod";b.h.ID=8;b.h.Type="FISHING_ROD";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="ALL";b.h.Speed=8;b.h.Reach=0;b.h.Weapon_Power=110;b.h.STR=100;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_FISHIN_EFFICINCY";b.h.UQ1val=25;b.h.UQ2txt="%_DAMAGE_BONUS";b.h.UQ2val=2;b.h.Upgrade_Slots_Left=8;a.h.equip=b;R.addNewEquip("FishingRod13",a);a=newl();b=newl();b.h.displayName="Bug_Net";b.h.sellPrice=100;b.h.typeGen="aBugNet";b.h.ID=0;b.h.Type="BUG_CATCHING_NET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=0;b.h.AGI=2;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("CatchingNet1",a);a=newl();b=newl();b.h.displayName="Copper_Netted_Net";b.h.sellPrice=2e3;b.h.typeGen="aBugNet";b.h.ID=1;b.h.Type="BUG_CATCHING_NET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=9;b.h.STR=1;b.h.AGI=3;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("CatchingNet2",a);a=newl();b=newl();b.h.displayName="Reinforced_Net";b.h.sellPrice=7500;b.h.typeGen="aBugNet";b.h.ID=0;b.h.Type="BUG_CATCHING_NET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=10;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=14;b.h.STR=2;b.h.AGI=4;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("CatchingNet3",a);a=newl();b=newl();b.h.displayName="Golden_Net";b.h.sellPrice=17e3;b.h.typeGen="aBugNet";b.h.ID=2;b.h.Type="BUG_CATCHING_NET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=0;b.h.Weapon_Power=20;b.h.STR=2;b.h.AGI=6;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("CatchingNet4",a);a=newl();b=newl();b.h.displayName="Platinet";b.h.sellPrice=17e3;b.h.typeGen="aBugNet";b.h.ID=3;b.h.Type="BUG_CATCHING_NET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=20;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=0;b.h.Weapon_Power=26;b.h.STR=3;b.h.AGI=7;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("CatchingNet5",a);a=newl();b=newl();b.h.displayName="Dementia_Net";b.h.sellPrice=17e3;b.h.typeGen="aBugNet";b.h.ID=5;b.h.Type="BUG_CATCHING_NET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=25;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=0;b.h.Weapon_Power=31;b.h.STR=4;b.h.AGI=9;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("CatchingNet6",a);a=newl();b=newl();b.h.displayName="Void_Imperium_Net";b.h.sellPrice=17e3;b.h.typeGen="aBugNet";b.h.ID=4;b.h.Type="BUG_CATCHING_NET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=0;b.h.Weapon_Power=37;b.h.STR=6;b.h.AGI=12;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("CatchingNet7",a);a=newl();b=newl();b.h.displayName="Lustre_Netting";b.h.sellPrice=17e3;b.h.typeGen="aBugNet";b.h.ID=6;b.h.Type="BUG_CATCHING_NET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=40;b.h.Class="ALL";b.h.Speed=6;b.h.Reach=0;b.h.Weapon_Power=45;b.h.STR=8;b.h.AGI=15;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("CatchingNet8",a);a=newl();b=newl();b.h.displayName="Starfire_Trim|Netting";b.h.sellPrice=17e3;b.h.typeGen="aBugNet";b.h.ID=2;b.h.Type="BUG_CATCHING_NET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="ALL";b.h.Speed=6;b.h.Reach=0;b.h.Weapon_Power=55;b.h.STR=10;b.h.AGI=20;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;R.addNewEquip("CatchingNet9",a);a=newl();b=newl();b.h.displayName="Dreadlo_Matted|Netting";b.h.sellPrice=17e3;b.h.typeGen="aBugNet";b.h.ID=1;b.h.Type="BUG_CATCHING_NET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=65;b.h.Class="ALL";b.h.Speed=7;b.h.Reach=0;b.h.Weapon_Power=65;b.h.STR=13;b.h.AGI=25;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;R.addNewEquip("CatchingNet10",a);a=newl();b=newl();b.h.displayName="Marbiglass|Netting";b.h.sellPrice=17e3;b.h.typeGen="aBugNet";b.h.ID=6;b.h.Type="BUG_CATCHING_NET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=80;b.h.Class="ALL";b.h.Speed=7;b.h.Reach=0;b.h.Weapon_Power=78;b.h.STR=15;b.h.AGI=32;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CATCH_EFFICINCY";b.h.UQ1val=5;b.h.UQ2txt="%_MONEY";b.h.UQ2val=15;b.h.Upgrade_Slots_Left=6;a.h.equip=b;R.addNewEquip("CatchingNet11",a);a=newl();b=newl();b.h.displayName="Wrangler_of_the|Qoxzul";b.h.sellPrice=17e3;b.h.typeGen="aBugNet";b.h.ID=7;b.h.Type="BUG_CATCHING_NET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=95;b.h.Class="ALL";b.h.Speed=8;b.h.Reach=0;b.h.Weapon_Power=92;b.h.STR=20;b.h.AGI=45;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CATCH_EFFICINCY";b.h.UQ1val=12;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=7;a.h.equip=b;R.addNewEquip("CatchingNet12",a);a=newl();b=newl();b.h.displayName="Prehistoric|Netting";b.h.sellPrice=17e3;b.h.typeGen="aBugNet";b.h.ID=8;b.h.Type="BUG_CATCHING_NET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=105;b.h.Class="ALL";b.h.Speed=8;b.h.Reach=0;b.h.Weapon_Power=110;b.h.STR=25;b.h.AGI=70;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CATCH_EFFICINCY";b.h.UQ1val=25;b.h.UQ2txt="%_DAMAGE_BONUS";b.h.UQ2val=2;b.h.Upgrade_Slots_Left=8;a.h.equip=b;R.addNewEquip("CatchingNet13",a);a=newl();b=newl();b.h.displayName="Cardboard_Traps";b.h.sellPrice=5e3;b.h.typeGen="aTrap";b.h.ID=1;b.h.Type="TRAP_BOX_SET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=0;b.h.AGI=2;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;R.addNewEquip("TrapBoxSet1",a);a=newl();b=newl();b.h.displayName="Silkskin_Traps";b.h.sellPrice=1;b.h.typeGen="aTrap";b.h.ID=2;b.h.Type="TRAP_BOX_SET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=5;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=8;b.h.STR=0;b.h.AGI=4;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;R.addNewEquip("TrapBoxSet2",a);a=newl();b=newl();b.h.displayName="Wooden_Traps";b.h.sellPrice=2;b.h.typeGen="aTrap";b.h.ID=3;b.h.Type="TRAP_BOX_SET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=13;b.h.STR=0;b.h.AGI=7;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("TrapBoxSet3",a);a=newl();b=newl();b.h.displayName="Natural_Traps";b.h.sellPrice=3;b.h.typeGen="aTrap";b.h.ID=4;b.h.Type="TRAP_BOX_SET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=20;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=20;b.h.STR=0;b.h.AGI=10;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("TrapBoxSet4",a);a=newl();b=newl();b.h.displayName="Steel_Traps";b.h.sellPrice=4;b.h.typeGen="aTrap";b.h.ID=5;b.h.Type="TRAP_BOX_SET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=26;b.h.STR=0;b.h.AGI=12;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("TrapBoxSet5",a);a=newl();b=newl();b.h.displayName="Meaty_Traps";b.h.sellPrice=5;b.h.typeGen="aTrap";b.h.ID=6;b.h.Type="TRAP_BOX_SET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=40;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=34;b.h.STR=0;b.h.AGI=15;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("TrapBoxSet6",a);a=newl();b=newl();b.h.displayName="Royal_Traps";b.h.sellPrice=6;b.h.typeGen="aTrap";b.h.ID=7;b.h.Type="TRAP_BOX_SET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=48;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=45;b.h.STR=0;b.h.AGI=20;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("TrapBoxSet7",a);a=newl();b=newl();b.h.displayName="Egalitarian_Traps";b.h.sellPrice=6;b.h.typeGen="aTrap";b.h.ID=7;b.h.Type="TRAP_BOX_SET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=55;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=55;b.h.STR=0;b.h.AGI=38;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("TrapBoxSet8",a);a=newl();b=newl();b.h.displayName="Forbidden_Traps";b.h.sellPrice=6;b.h.typeGen="aTrap";b.h.ID=7;b.h.Type="TRAP_BOX_SET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=70;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=67;b.h.STR=0;b.h.AGI=56;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MONEY";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;R.addNewEquip("TrapBoxSet9",a);a=newl();b=newl();b.h.displayName="Containment_of|the_Zrgyios";b.h.sellPrice=6;b.h.typeGen="aTrap";b.h.ID=7;b.h.Type="TRAP_BOX_SET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=85;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=80;b.h.STR=0;b.h.AGI=80;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=4;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=6;a.h.equip=b;R.addNewEquip("TrapBoxSet10",a);a=newl();b=newl();b.h.displayName="Prehistoric|Traps";b.h.sellPrice=6;b.h.typeGen="aTrap";b.h.ID=7;b.h.Type="TRAP_BOX_SET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=110;b.h.STR=0;b.h.AGI=100;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=6;b.h.UQ2txt="%_DAMAGE_BONUS";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=7;a.h.equip=b;R.addNewEquip("TrapBoxSet11",a);a=newl();b=newl();b.h.displayName="Wax_Skull";b.h.sellPrice=5e3;b.h.typeGen="aSkull";b.h.ID=0;b.h.Type="WORSHIP_SKULL";b.h.lvReqToCraft="100";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=0;b.h.AGI=0;b.h.WIS=2;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;R.addNewEquip("WorshipSkull1",a);a=newl();b=newl();b.h.displayName="Ceramic_Skull";b.h.sellPrice=100;b.h.typeGen="aSkull";b.h.ID=0;b.h.Type="WORSHIP_SKULL";b.h.lvReqToCraft="200";a.h.common=b;b=newl();b.h.lvReqToEquip=10;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=0;b.h.Weapon_Power=8;b.h.STR=0;b.h.AGI=0;b.h.WIS=4;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;R.addNewEquip("WorshipSkull2",a);a=newl();b=newl();b.h.displayName="Horned_Skull";b.h.sellPrice=100;b.h.typeGen="aSkull";b.h.ID=0;b.h.Type="WORSHIP_SKULL";b.h.lvReqToCraft="400";a.h.common=b;b=newl();b.h.lvReqToEquip=25;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=0;b.h.Weapon_Power=13;b.h.STR=0;b.h.AGI=0;b.h.WIS=7;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("WorshipSkull3",a);a=newl();b=newl();b.h.displayName="Prickle_Skull";b.h.sellPrice=100;b.h.typeGen="aSkull";b.h.ID=0;b.h.Type="WORSHIP_SKULL";b.h.lvReqToCraft="750";a.h.common=b;b=newl();b.h.lvReqToEquip=35;b.h.Class="ALL";b.h.Speed=6;b.h.Reach=0;b.h.Weapon_Power=20;b.h.STR=0;b.h.AGI=0;b.h.WIS=10;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("WorshipSkull4",a);a=newl();b=newl();b.h.displayName="Manifested_Skull";b.h.sellPrice=100;b.h.typeGen="aSkull";b.h.ID=0;b.h.Type="WORSHIP_SKULL";b.h.lvReqToCraft="1250";a.h.common=b;b=newl();b.h.lvReqToEquip=40;b.h.Class="ALL";b.h.Speed=7;b.h.Reach=0;b.h.Weapon_Power=26;b.h.STR=0;b.h.AGI=0;b.h.WIS=12;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("WorshipSkull5",a);a=newl();b=newl();b.h.displayName="Glauss_Skull";b.h.sellPrice=100;b.h.typeGen="aSkull";b.h.ID=0;b.h.Type="WORSHIP_SKULL";b.h.lvReqToCraft="1750";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="ALL";b.h.Speed=7;b.h.Reach=0;b.h.Weapon_Power=34;b.h.STR=0;b.h.AGI=0;b.h.WIS=15;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("WorshipSkull6",a);a=newl();b=newl();b.h.displayName="Luciferian_Skull";b.h.sellPrice=100;b.h.typeGen="aSkull";b.h.ID=0;b.h.Type="WORSHIP_SKULL";b.h.lvReqToCraft="2500";a.h.common=b;b=newl();b.h.lvReqToEquip=60;b.h.Class="ALL";b.h.Speed=8;b.h.Reach=0;b.h.Weapon_Power=45;b.h.STR=0;b.h.AGI=0;b.h.WIS=20;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("WorshipSkull7",a);a=newl();b=newl();b.h.displayName="Slush_Skull";b.h.sellPrice=100;b.h.typeGen="aSkull";b.h.ID=0;b.h.Type="WORSHIP_SKULL";b.h.lvReqToCraft="1000";a.h.common=b;b=newl();b.h.lvReqToEquip=10;b.h.Class="ALL";b.h.Speed=2;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=25;b.h.UQ1txt="_BASE_DAMAGE";b.h.UQ1val=250;b.h.UQ2txt="%_ALL_STATS";b.h.UQ2val=2;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("WorshipSkull8",a);a=newl();b=newl();b.h.displayName="Dreadnaught_Skull";b.h.sellPrice=100;b.h.typeGen="aSkull";b.h.ID=0;b.h.Type="WORSHIP_SKULL";b.h.lvReqToCraft="3000";a.h.common=b;b=newl();b.h.lvReqToEquip=70;b.h.Class="ALL";b.h.Speed=9;b.h.Reach=0;b.h.Weapon_Power=55;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=3;b.h.UQ2txt="%_ALL_STATS";b.h.UQ2val=3;b.h.Upgrade_Slots_Left=5;a.h.equip=b;R.addNewEquip("WorshipSkull9",a);a=newl();b=newl();b.h.displayName="Cultist_Skull";b.h.sellPrice=100;b.h.typeGen="aSkull";b.h.ID=0;b.h.Type="WORSHIP_SKULL";b.h.lvReqToCraft="3600";a.h.common=b;b=newl();b.h.lvReqToEquip=90;b.h.Class="ALL";b.h.Speed=9;b.h.Reach=0;b.h.Weapon_Power=63;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MONEY";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;R.addNewEquip("WorshipSkull10",a);a=newl();b=newl();b.h.displayName="Crystal_Skull_of|Esquire_Vnoze";b.h.sellPrice=100;b.h.typeGen="aSkull";b.h.ID=0;b.h.Type="WORSHIP_SKULL";b.h.lvReqToCraft="4200";a.h.common=b;b=newl();b.h.lvReqToEquip=120;b.h.Class="ALL";b.h.Speed=10;b.h.Reach=0;b.h.Weapon_Power=70;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=4;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=6;a.h.equip=b;R.addNewEquip("WorshipSkull11",a);a=newl();b=newl();b.h.displayName="Prehistoric|Skull";b.h.sellPrice=100;b.h.typeGen="aSkull";b.h.ID=0;b.h.Type="WORSHIP_SKULL";b.h.lvReqToCraft="6000";a.h.common=b;b=newl();b.h.lvReqToEquip=150;b.h.Class="ALL";b.h.Speed=10;b.h.Reach=0;b.h.Weapon_Power=90;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=6;b.h.UQ2txt="%_DAMAGE_BONUS";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=7;a.h.equip=b;R.addNewEquip("WorshipSkull12",a);a=newl();b=newl();b.h.displayName="Sappy_DNA_Splicer";b.h.sellPrice=6e6;b.h.typeGen="aDNAgun";b.h.ID=1;b.h.Type="DNA_SPLICER";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=40;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=50;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=10;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("DNAgun0",a);a=newl();b=newl();b.h.displayName="Bolstered_DNA|Splicer";b.h.sellPrice=1e4;b.h.typeGen="aDNAgun";b.h.ID=2;b.h.Type="DNA_SPLICER";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=90;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=70;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=15;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("DNAgun1",a);a=newl();b=newl();b.h.displayName="Double_Barreled|DNA_Splicer";b.h.sellPrice=1e4;b.h.typeGen="aDNAgun";b.h.ID=3;b.h.Type="DNA_SPLICER";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=140;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=100;b.h.STR=15;b.h.AGI=15;b.h.WIS=15;b.h.LUK=15;b.h.Defence=23;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("DNAgun2",a);a=newl();b=newl();b.h.displayName="Ergonomic_DNA|Splicer";b.h.sellPrice=1e4;b.h.typeGen="aDNAgun";b.h.ID=4;b.h.Type="DNA_SPLICER";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=180;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=150;b.h.STR=20;b.h.AGI=20;b.h.WIS=20;b.h.LUK=20;b.h.Defence=35;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("DNAgun3",a);a=newl();b=newl();b.h.displayName="Nomwich";b.h.sellPrice=2;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=20;b.h.Trigger=50;b.h.Cooldown=30;a.h.consumable=b;R.addNewConsumable("FoodHealth1",a);a=newl();b=newl();b.h.displayName="Hot_Dog";b.h.sellPrice=7;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=50;b.h.Trigger=50;b.h.Cooldown=30;a.h.consumable=b;R.addNewConsumable("FoodHealth3",a);a=newl();b=newl();b.h.displayName="Cheezy_Pizza";b.h.sellPrice=20;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=125;b.h.Trigger=50;b.h.Cooldown=30;a.h.consumable=b;R.addNewConsumable("FoodHealth2",a);a=newl();b=newl();b.h.displayName="Peanut";b.h.sellPrice=12;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_75%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="The_favorite_snack_of_all_bloblytes!";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=80;b.h.Trigger=75;b.h.Cooldown=20;a.h.consumable=b;R.addNewConsumable("Peanut",a);a=newl();b=newl();b.h.displayName="Saucy_Weiner";b.h.sellPrice=120;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=700;b.h.Trigger=50;b.h.Cooldown=30;a.h.consumable=b;R.addNewConsumable("FoodHealth4",a);a=newl();b=newl();b.h.displayName="Kebab_Sticks";b.h.sellPrice=48;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=300;b.h.Trigger=50;b.h.Cooldown=30;a.h.consumable=b;R.addNewConsumable("FoodHealth6",a);a=newl();b=newl();b.h.displayName="Meat_Pie";b.h.sellPrice=80;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=500;b.h.Trigger=50;b.h.Cooldown=30;a.h.consumable=b;R.addNewConsumable("FoodHealth7",a);a=newl();b=newl();b.h.displayName="Mountain_Bread";b.h.sellPrice=140;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=750;b.h.Trigger=50;b.h.Cooldown=30;a.h.consumable=b;R.addNewConsumable("FoodHealth10",a);a=newl();b=newl();b.h.displayName="Yeti_Ham";b.h.sellPrice=190;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_60%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=1e3;b.h.Trigger=60;b.h.Cooldown=30;a.h.consumable=b;R.addNewConsumable("FoodHealth9",a);a=newl();b=newl();b.h.displayName="Sheepie_Dairy";b.h.sellPrice=310;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=1500;b.h.Trigger=50;b.h.Cooldown=30;a.h.consumable=b;R.addNewConsumable("FoodHealth11",a);a=newl();b=newl();b.h.displayName="Cupcake";b.h.sellPrice=1500;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_70%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=3e3;b.h.Trigger=70;b.h.Cooldown=30;a.h.consumable=b;R.addNewConsumable("FoodHealth13",a);a=newl();b=newl();b.h.displayName="Spicy_Space_Ribs";b.h.sellPrice=4e3;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=6e3;b.h.Trigger=50;b.h.Cooldown=25;a.h.consumable=b;R.addNewConsumable("FoodHealth12",a);a=newl();b=newl();b.h.displayName="Lemon_Slice";b.h.sellPrice=8e3;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=8e3;b.h.Trigger=60;b.h.Cooldown=22;a.h.consumable=b;R.addNewConsumable("FoodHealth14",a);a=newl();b=newl();b.h.displayName="Grilled_Cheese|Nomwich";b.h.sellPrice=16e3;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=12500;b.h.Trigger=70;b.h.Cooldown=20;a.h.consumable=b;R.addNewConsumable("FoodHealth15",a);a=newl();b=newl();b.h.displayName="Raw_Nigiri";b.h.sellPrice=7e4;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=2e4;b.h.Trigger=70;b.h.Cooldown=20;a.h.consumable=b;R.addNewConsumable("FoodHealth16",a);a=newl();b=newl();b.h.displayName="Dumpling";b.h.sellPrice=5e5;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=4e4;b.h.Trigger=70;b.h.Cooldown=20;a.h.consumable=b;R.addNewConsumable("FoodHealth17",a);a=newl();b=newl();b.h.displayName="Saltwater_Taffy";b.h.sellPrice=6e25;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=6e4;b.h.Trigger=70;b.h.Cooldown=20;a.h.consumable=b;R.addNewConsumable("FoodHealth18",a);a=newl();b=newl();b.h.displayName="Sugar_Cookie";b.h.sellPrice=3e28;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=8e4;b.h.Trigger=70;b.h.Cooldown=20;a.h.consumable=b;R.addNewConsumable("FoodHealth19",a);a=newl();b=newl();b.h.displayName="Cranberry_Jam";b.h.sellPrice=32;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=200;b.h.Trigger=50;b.h.Cooldown=30;a.h.consumable=b;R.addNewConsumable("FoodHealth5",a);a=newl();b=newl();b.h.displayName="Crabby_Cake|Supreme";b.h.sellPrice=120;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_35%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=700;b.h.Trigger=35;b.h.Cooldown=60;a.h.consumable=b;R.addNewConsumable("FoodHealth8",a);a=newl();b=newl();b.h.displayName="Milk_Choco";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_80%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=1e3;b.h.Trigger=80;b.h.Cooldown=12;a.h.consumable=b;R.addNewConsumable("FoodEvent8",a);a=newl();b=newl();b.h.displayName="Magic_Meatloaf";b.h.sellPrice=300;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_30%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=2e3;b.h.Trigger=30;b.h.Cooldown=10;a.h.consumable=b;R.addNewConsumable("Meatloaf",a);a=newl();b=newl();b.h.displayName="Small_Strength|Potion";b.h.sellPrice=5;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Base_Dmg_by_[.";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="BaseDmgBoosts";b.h.Amount=50;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotOr1",a);a=newl();b=newl();b.h.displayName="Average_Strength|Potion";b.h.sellPrice=25;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Base_Dmg_by_[.";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="BaseDmgBoosts";b.h.Amount=150;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotOr2",a);a=newl();b=newl();b.h.displayName="Decent_Strength|Potion";b.h.sellPrice=150;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Base_Dmg_by_[.";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="BaseDmgBoosts";b.h.Amount=400;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotOr3",a);a=newl();b=newl();b.h.displayName="Potent_Strength|Potion";b.h.sellPrice=2700;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Base_Dmg_by_[.";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="BaseDmgBoosts";b.h.Amount=1e3;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotOr4",a);a=newl();b=newl();b.h.displayName="Small_Life|Potion";b.h.sellPrice=4;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Base_HP_by_[.";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="HpBaseBoosts";b.h.Amount=75;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotRe1",a);a=newl();b=newl();b.h.displayName="Average_Life|Potion";b.h.sellPrice=30;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Base_HP_by_[.";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="HpBaseBoosts";b.h.Amount=200;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotRe2",a);a=newl();b=newl();b.h.displayName="Decent_Life|Potion";b.h.sellPrice=200;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Base_HP_by_[.";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="HpBaseBoosts";b.h.Amount=400;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotRe3",a);a=newl();b=newl();b.h.displayName="Potent_Life|Potion";b.h.sellPrice=4e3;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Base_HP_by_[.";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="HpBaseBoosts";b.h.Amount=800;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotRe4",a);a=newl();b=newl();b.h.displayName="Small_Speed|Potion";b.h.sellPrice=7;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Move_Spd_by_[%.";b.h.desc_line2="]%_chance_to_be_consumed";b.h.desc_line3="every_10_meters_walked.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="MoveSpdBoosts";b.h.Amount=10;b.h.Trigger=-2;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotGr1",a);a=newl();b=newl();b.h.displayName="Average_Speed|Potion";b.h.sellPrice=60;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Move_Spd_by_[%.";b.h.desc_line2="]%_chance_to_be_consumed";b.h.desc_line3="every_10_meters_walked.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="MoveSpdBoosts";b.h.Amount=15;b.h.Trigger=-2;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotGr2",a);a=newl();b=newl();b.h.displayName="Decent_Speed|Potion";b.h.sellPrice=400;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Move_Spd_by_[%.";b.h.desc_line2="]%_chance_to_be_consumed";b.h.desc_line3="every_10_meters_walked.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="MoveSpdBoosts";b.h.Amount=17;b.h.Trigger=-2;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotGr3",a);a=newl();b=newl();b.h.displayName="Potent_Speed|Potion";b.h.sellPrice=8e3;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Move_Spd_by_[%.";b.h.desc_line2="]%_chance_to_be_consumed";b.h.desc_line3="every_10_meters_walked.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="MoveSpdBoosts";b.h.Amount=20;b.h.Trigger=-2;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotGr4",a);a=newl();b=newl();b.h.displayName="Minto_Choco";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Move_Spd_by_[%.";b.h.desc_line2="]%_chance_to_be_consumed";b.h.desc_line3="every_10_meters_walked.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="MoveSpdBoosts";b.h.Amount=8;b.h.Trigger=-2;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodEvent7",a);a=newl();b=newl();b.h.displayName="Small_Mana|Potion";b.h.sellPrice=5;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Boosts_Mana_Regen_Rate_by_[%";b.h.desc_line2="]%_chance_to_be_consumed";b.h.desc_line3="every_100%_Mana_Regenerated.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ManaRegenBoosts";b.h.Amount=20;b.h.Trigger=-3;b.h.Cooldown=2;a.h.consumable=b;R.addNewConsumable("FoodPotMana1",a);a=newl();b=newl();b.h.displayName="Average_Mana|Potion";b.h.sellPrice=25;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Boosts_Mana_Regen_Rate_by_[%";b.h.desc_line2="]%_chance_to_be_consumed";b.h.desc_line3="every_100%_Mana_Regenerated.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ManaRegenBoosts";b.h.Amount=30;b.h.Trigger=-3;b.h.Cooldown=2;a.h.consumable=b;R.addNewConsumable("FoodPotMana2",a);a=newl();b=newl();b.h.displayName="Decent_Mana|Potion";b.h.sellPrice=175;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Boosts_Mana_Regen_Rate_by_[%";b.h.desc_line2="]%_chance_to_be_consumed";b.h.desc_line3="every_100%_Mana_Regenerated.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ManaRegenBoosts";b.h.Amount=40;b.h.Trigger=-3;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotMana3",a);a=newl();b=newl();b.h.displayName="Potent_Mana|Potion";b.h.sellPrice=4500;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Boosts_Mana_Regen_Rate_by_[%";b.h.desc_line2="]%_chance_to_be_consumed";b.h.desc_line3="every_100%_Mana_Regenerated.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ManaRegenBoosts";b.h.Amount=50;b.h.Trigger=-3;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotMana4",a);a=newl();b=newl();b.h.displayName="Small_EXP|Potion";b.h.sellPrice=25;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Exp_Gain_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ClassEXP";b.h.Amount=30;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotYe1",a);a=newl();b=newl();b.h.displayName="Average_EXP|Potion";b.h.sellPrice=250;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Exp_Gain_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ClassEXP";b.h.Amount=45;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotYe2",a);a=newl();b=newl();b.h.displayName="Decent_EXP|Potion";b.h.sellPrice=1500;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Exp_Gain_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ClassEXP";b.h.Amount=60;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotYe3",a);a=newl();b=newl();b.h.displayName="Potent_EXP|Potion";b.h.sellPrice=3e4;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Exp_Gain_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ClassEXP";b.h.Amount=75;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotYe4",a);a=newl();b=newl();b.h.displayName="Quotient_EXP|Potion";b.h.sellPrice=15e4;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Exp_Gain_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ClassEXP";b.h.Amount=90;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotYe5",a);a=newl();b=newl();b.h.displayName="Lemony_Choco";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Exp_Gain_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ClassEXP";b.h.Amount=30;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodEvent6",a);a=newl();b=newl();b.h.displayName="Shiny_Pearl";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Exp_Gain_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ClassEXP";b.h.Amount=25;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("Pearl3",a);a=newl();b=newl();b.h.displayName="Icing_Ironbite";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Mining_Speed_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_swing_your_pickaxe.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="MiningSpeedBoosts";b.h.Amount=15;b.h.Trigger=-4;b.h.Cooldown=10;a.h.consumable=b;R.addNewConsumable("FoodMining1",a);a=newl();b=newl();b.h.displayName="Giftybread_Man";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Mining_Speed_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_swing_your_pickaxe.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="MiningSpeedBoosts";b.h.Amount=25;b.h.Trigger=-4;b.h.Cooldown=3;a.h.consumable=b;R.addNewConsumable("FoodEvent1",a);a=newl();b=newl();b.h.displayName="Stained_Pearl";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Mining_Speed_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_swing_your_pickaxe.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="MiningSpeedBoosts";b.h.Amount=30;b.h.Trigger=-4;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("Pearl2",a);a=newl();b=newl();b.h.displayName="Saucy_Logfries";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Choppin'_Speed_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_swing_your_hatchet.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ChoppinSpeedBoosts";b.h.Amount=15;b.h.Trigger=-6;b.h.Cooldown=10;a.h.consumable=b;R.addNewConsumable("FoodChoppin1",a);a=newl();b=newl();b.h.displayName="Chogg_Nog";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Choppin'_Speed_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_swing_your_hatchet.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ChoppinSpeedBoosts";b.h.Amount=25;b.h.Trigger=-6;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodEvent2",a);a=newl();b=newl();b.h.displayName="Slurpin_Herm";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Fishing_Spd_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_reel_in_a_fish.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="FishingSpeedBoosts";b.h.Amount=20;b.h.Trigger=-7;b.h.Cooldown=10;a.h.consumable=b;R.addNewConsumable("FoodFish1",a);a=newl();b=newl();b.h.displayName="Candy_Canes";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Fishing_Spd_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_reel_in_a_fish.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="FishingSpeedBoosts";b.h.Amount=25;b.h.Trigger=-7;b.h.Cooldown=3;a.h.consumable=b;R.addNewConsumable("FoodEvent3",a);a=newl();b=newl();b.h.displayName="Aqua_Pearl";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Fishing_Spd_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_reel_in_a_fish.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="FishingSpeedBoosts";b.h.Amount=30;b.h.Trigger=-7;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("Pearl1",a);a=newl();b=newl();b.h.displayName="Buttered_Toasted|Butter";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Catching_Spd_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_swing_your_net.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="CatchingSpeedBoosts";b.h.Amount=20;b.h.Trigger=-8;b.h.Cooldown=10;a.h.consumable=b;R.addNewConsumable("FoodCatch1",a);a=newl();b=newl();b.h.displayName="Mistleberries";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Catching_Spd_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_swing_your_net.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="CatchingSpeedBoosts";b.h.Amount=25;b.h.Trigger=-8;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodEvent4",a);a=newl();b=newl();b.h.displayName="Critter_Numnums";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Shiny_Odds_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_open_a_trap.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="TrappingSpeedBoosts";b.h.Amount=25;b.h.Trigger=-9;b.h.Cooldown=125;a.h.consumable=b;R.addNewConsumable("FoodTrapping1",a);a=newl();b=newl();b.h.displayName="Soulble_Gum";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Soul_Gain_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_Worship.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="WorshipSoulBoosts";b.h.Amount=25;b.h.Trigger=-10;b.h.Cooldown=125;a.h.consumable=b;R.addNewConsumable("FoodWorship1",a);a=newl();b=newl();b.h.displayName="Bullet";b.h.sellPrice=20;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Weapon_Power_by_[.";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="WeaponPowerBoosts";b.h.Amount=1;b.h.Trigger=-1;b.h.Cooldown=15;a.h.consumable=b;R.addNewConsumable("Bullet",a);a=newl();b=newl();b.h.displayName="FMJ_Bullet";b.h.sellPrice=20;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Weapon_Power_by_[.";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="WeaponPowerBoosts";b.h.Amount=2;b.h.Trigger=-1;b.h.Cooldown=12;a.h.consumable=b;R.addNewConsumable("BulletB",a);a=newl();b=newl();b.h.displayName="Coldseeker_Bullet";b.h.sellPrice=20;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Weapon_Power_by_[.";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="WeaponPowerBoosts";b.h.Amount=9;b.h.Trigger=-1;b.h.Cooldown=5;a.h.consumable=b;R.addNewConsumable("Bullet3",a);a=newl();b=newl();b.h.displayName="Midnight_Cookie";b.h.sellPrice=300;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Weapon_Power_by_[.";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="WeaponPowerBoosts";b.h.Amount=5;b.h.Trigger=-1;b.h.Cooldown=2;a.h.consumable=b;R.addNewConsumable("MidnightCookie",a);a=newl();b=newl();b.h.displayName="Cherry_Choco";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Weapon_Power_by_[.";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="WeaponPowerBoosts";b.h.Amount=5;b.h.Trigger=-1;b.h.Cooldown=10;a.h.consumable=b;R.addNewConsumable("FoodEvent5",a);a=newl();b=newl();b.h.displayName="Golden_Peanut";b.h.sellPrice=125;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Mining_Efficiency";b.h.desc_line2="by_[%.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="MiningEff";b.h.Amount=30;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("PeanutG",a);a=newl();b=newl();b.h.displayName="Golden_Jam";b.h.sellPrice=50;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_your_Max_Health_by";b.h.desc_line2="[%.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="MaxHPpct";b.h.Amount=30;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG1",a);a=newl();b=newl();b.h.displayName="Golden_Kebabs";b.h.sellPrice=200;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Total_Damage_to";b.h.desc_line2="all_monsters_by_[%.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Damage";b.h.Amount=20;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG2",a);a=newl();b=newl();b.h.displayName="Golden_Meat_Pie";b.h.sellPrice=350;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_your_Total_Defence";b.h.desc_line2="by_[%.";b.h.desc_line3="Golden_foods_are_never_consumed";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Defence";b.h.Amount=30;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG3",a);a=newl();b=newl();b.h.displayName="Golden_Nomwich";b.h.sellPrice=100;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Base_Damage_Dealt_to";b.h.desc_line2="all_monsters_by_[.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="BaseDamage";b.h.Amount=400;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG4",a);a=newl();b=newl();b.h.displayName="Golden_Ham";b.h.sellPrice=100;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Skill_EXP_earned";b.h.desc_line2="from_all_skills_by_[%.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="SkillExp";b.h.Amount=18;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG5",a);a=newl();b=newl();b.h.displayName="Golden_Bread";b.h.sellPrice=100;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Boosts_coins_dropped_by_mobs";b.h.desc_line2="by_[%.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="MonsterCash";b.h.Amount=30;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG6",a);a=newl();b=newl();b.h.displayName="Golden_Ribs";b.h.sellPrice=100;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Fishing_Efficiency";b.h.desc_line2="by_[%.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="FishingEff";b.h.Amount=40;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG7",a);a=newl();b=newl();b.h.displayName="Golden_Cheese";b.h.sellPrice=100;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Claiming_AFK_gains_levels";b.h.desc_line2="up_shrines_[%_faster.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ShrineEffect";b.h.Amount=20;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG8",a);a=newl();b=newl();b.h.displayName="Golden_Grilled|Cheese_Nomwich";b.h.sellPrice=100;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="STR_AGI_WIS_and_LUK_all";b.h.desc_line2="increased_by_[%.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="AllStatz";b.h.Amount=10;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG9",a);a=newl();b=newl();b.h.displayName="Golden_Hampter|Gummy_Candy";b.h.sellPrice=100;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Claiming_AFK_gives_Sailing";b.h.desc_line2="AFK_time_[%_chance.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="SailAFKz";b.h.Amount=23;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG10",a);a=newl();b=newl();b.h.displayName="Golden_Nigiri";b.h.sellPrice=100;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Class_EXP_gain";b.h.desc_line2="by_[%.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ClassEXPz";b.h.Amount=40;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG11",a);a=newl();b=newl();b.h.displayName="Golden_Dumpling";b.h.sellPrice=100;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_all_AFK_Gains_rate";b.h.desc_line2="by_[%.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="AllAFK";b.h.Amount=4;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG12",a);a=newl();b=newl();b.h.displayName="Golden_Cake";b.h.sellPrice=100;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Drop_Rate";b.h.desc_line2="by_[%.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="DropRatez";b.h.Amount=8;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG13",a);a=newl();b=newl();b.h.displayName="Golden_Saltwater|Taffy";b.h.sellPrice=100;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Spelunking_EXP_gain";b.h.desc_line2="by_[%.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="SpelunkEXPz";b.h.Amount=1;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG14",a);a=newl();b=newl();b.h.displayName="Golden_Sugar|Cookie";b.h.sellPrice=100;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Joe_Momma";b.h.desc_line2="by_[%.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="DropRatez";b.h.Amount=2;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG15",a);a=newl();b=newl();b.h.displayName="Butter_Bar";b.h.sellPrice=1;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_your_Base_Accuracy";b.h.desc_line2="by_[._And_tastes_great!";b.h.desc_line3="This_is_technically_golden_food!";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="BaseAcc";b.h.Amount=60;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("ButterBar",a);a=newl();b=newl();b.h.displayName="Bottled_Town|Teleport";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="TELEPORT";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_item_to_be";b.h.desc_line2="teleported_back_to_Town.";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("rtt0",a);a=newl();b=newl();b.h.displayName="Talent_Point|Reset_Fragment";b.h.sellPrice=200;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="FRAGMENT";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_item_to_turn_10_Fragments_into_1_Talent_Point_Reset_Potion._You'll_need_1_open_inventory_space_for_this_to_work.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("ResetFrag",a);a=newl();b=newl();b.h.displayName="Talent_Point|Reset_Potion";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="RESET_POTION";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_item_to_respec_all_your_Talent_Points!_Well,_except_for_the_Star_tab_points,_there's_a_different_potion_for_that.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("ResetCompleted",a);a=newl();b=newl();b.h.displayName="Star_Talent|Reset_Potion";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="RESET_POTION";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_item_to_refund_all_your_Star_Talent_Points!_Well,_except_for_the_Star_tab_points,_there's_a_different_potion_for..._no_wait,_this_IS_the_potion_for_that!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("ResetCompletedS",a);a=newl();b=newl();b.h.displayName="Sub_Class_Swap|Token";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="USABLE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_item_to_change_sub_class_within_your_class._It_won't_let_you_change_classes,_that_will_be_done_a_different_way_in_the_future...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("ClassSwap",a);a=newl();b=newl();b.h.displayName="Elite_Class_Swap|Token";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="USABLE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_item_to_change_elite_class_within_your_class._Divine_Knight_to_Blood_Berserker,_Beast_Master_to_Siege_Breaker,_etc.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("ClassSwapB",a);a=newl();b=newl();b.h.displayName="Complete_Class|Redo_Token";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="USABLE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="YOU_MUST_TAKE_OFF_EQUIPMENT_TO_USE_THIS._Hold_down_on_this_item_to_become_a_Lv_1_beginner_again._You_can_then_redo_the_promotion_quests_to_choose_a_new_class!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("ClassSwapC",a);a=newl();b=newl();b.h.displayName="Post_Office_Box|Reseto_Magnifico";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="USABLE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_reset_all_post_office_upgrades_made_on_this_character!_You'll_get_all_the_Box_Points_refunded_of_course,_no_problemo!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("ResetBox",a);a=newl();b=newl();b.h.displayName="Hat_Premiumifier";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="USABLE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="Drag_this_onto_any_normal_hat_to_turn_it_into_a_premium_hat!_Doing_so_will_wipe_all_it's_stats,_and_give_it_{1_all_stat_and_5_Premium_Upgrade_Slots,_just_like_any_other_premium_hat.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Ht",a);a=newl();b=newl();b.h.displayName="Premium_Stone|Refunder";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="USABLE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="Drag_this_onto_any_Premium_Hat_to_refund_all_Premium_Stones_used_on_it._You_must_have_at_least_4_open_inventory_spaces_to_use_this_btw";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("StonePremRestore",a);a=newl();b=newl();b.h.displayName="Premium_Bonus|Swapper";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="USABLE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="Put_this_stone_in_your_inventory,_with_2_premium_hats_to_its_left_and_right._Then_hold_down_on_the_stone_to_swap_their_special_bonuses!_Also_works_with_regular_hats_made_premium_by_the_Hat_Premiumifier";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("StonePremStatswap",a);a=newl();b=newl();b.h.displayName="Small_Experience|Balloon";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=50;b.h.Type="EXP_BALLOON";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_gain_EXP_in_the_skill_that's_displayed_in_the_corner_of_your_screen._If_you're_in_a_town,_you_will_gain_EXP_in_the_town_skill._The_amount_of_EXP_you_get_is_based_on_your_skill's_Lv.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("ExpBalloon1",a);a=newl();b=newl();b.h.displayName="Medium_Experience|Balloon";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=120;b.h.Type="EXP_BALLOON";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_gain_EXP_in_the_skill_that's_displayed_in_the_corner_of_your_screen._If_you're_in_a_town,_you_will_gain_EXP_in_the_town_skill._The_amount_of_EXP_you_get_is_based_on_your_skill's_Lv.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("ExpBalloon2",a);a=newl();b=newl();b.h.displayName="Large_Experience|Balloon";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=200;b.h.Type="EXP_BALLOON";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_gain_EXP_in_the_skill_that's_displayed_in_the_corner_of_your_screen._If_you're_in_a_town,_you_will_gain_EXP_in_the_town_skill._The_amount_of_EXP_you_get_is_based_on_your_skill's_Lv.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("ExpBalloon3",a);a=newl();b=newl();b.h.displayName="Job_Application";b.h.sellPrice=200;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="It's_a_registration_form_for_the";b.h.desc_line2="job_of_Sanitation_Comissioner.";b.h.desc_line3="One_of_the_requirements_is_being";b.h.desc_line4="able_to_pick_up_dog_poop_without";b.h.desc_line5="immediately_throwing_the_bag";b.h.desc_line6="on_the_ground_afterward.";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("JobApplication",a);a=newl();b=newl();b.h.displayName="Sculpting_Tools";b.h.sellPrice=400;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_gotta_embrace_the_marble!";b.h.desc_line2="You_gotta_sniff_the_marble!";b.h.desc_line3="You_gotta_lick_the_marble!";b.h.desc_line4="You_gotta_wash_the_marble!";b.h.desc_line5="You_gotta_BE_THE_MARBLE!";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("SmithingHammerChisel",a);a=newl();b=newl();b.h.displayName="Guilding_Tools";b.h.sellPrice=12500;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Drop_this_on_the_statue_man,_and_you'll_turn_him_to_gold_and_unlock_Golden_Statues!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("SmithingHammerChisel2",a);a=newl();b=newl();b.h.displayName="Onyx_Tools";b.h.sellPrice=12500;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Drop_this_on_the_statue_man,_and_you'll_turn_him_to_onyx_and_unlock_the_ability_to_trade_in_statues_for_Onyx_rank!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("SmithingHammerChisel3",a);a=newl();b=newl();b.h.displayName="Zenith_Tools";b.h.sellPrice=12500;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Drop_this_on_the_statue_man,_and_you'll_unlock_the_ability_to_drop_stacks_of_1_Million_Statues_for_Zenith_rank!_Also_unlocks_Zenith_Cluster_Farming,_talk_to_Zenelith_in_World_7_for_more_info.!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("SmithingHammerChisel4",a);a=newl();b=newl();b.h.displayName="BobJoePickle";b.h.sellPrice=1e4;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="He_was_one_of_the_good_ones...";b.h.desc_line2="Alas_he_is_now_just_a_pickle.";b.h.desc_line3="Good_for_scaring_a_cat_though!";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("BobJoePickle",a);a=newl();b=newl();b.h.displayName="BallJoePickle";b.h.sellPrice=4e4;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="What_have_they_done_to_ya_BobJoe?";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("BallJoePickle",a);a=newl();b=newl();b.h.displayName="BoneJoePickle";b.h.sellPrice=4e12;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="He_cackles,_he_spooks,_and_he..._multiplies_miniboss_HP_by_1.10x!?_And_he_STACKS_with_other_BoneJoePickles??!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("BoneJoePickle",a);a=newl();b=newl();b.h.displayName="Mining|Certificate";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_passed_Glumlee's_tutorial_quests._It's_worthless.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest1",a);a=newl();b=newl();b.h.displayName="Desert_Topaz";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Give_this_to_the_bird_in_town_to_unlock_the_portal_to_World_2!_You_can_come_back_to_World_1_whenever_you_want,_don't_worry.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Crystal1",a);a=newl();b=newl();b.h.displayName="Glacier_Quartz";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Restores_power_to_the_Glacial_Portal_in_the_desert_town,_allowing_travel_to_World_3!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Crystal2",a);a=newl();b=newl();b.h.displayName="Galaxial_Amethyst";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Restores_power_to_the_Galaxy_Portal_in_the_glacier_town,_allowing_travel_to_World_4!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Crystal3",a);a=newl();b=newl();b.h.displayName="Magma_Geode";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Restores_power_to_the_Magma_Portal_in_the_galaxy_town,_allowing_travel_to_World_5!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Crystal4",a);a=newl();b=newl();b.h.displayName="Spirit_Diamond";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Restores_power_to_the_Spirit_Portal_in_the_magma_rivertown,_allowing_travel_to_World_6!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Crystal5",a);a=newl();b=newl();b.h.displayName="Gem_to_W7";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Restores_power_to_the_W7_Portal_in_the_spirit_village,_allowing_travel_to_World_7!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Crystal6",a);a=newl();b=newl();b.h.displayName="Stone_Peanut";b.h.sellPrice=5e3;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_like_a_regular_peanut,_except";b.h.desc_line2="it's_made_of_stone_instead_of_pea.";b.h.desc_line3="I_bet_a_Rocklyte_would_enjoy_it!";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("PeanutS",a);a=newl();b=newl();b.h.displayName="Ketchup_Bottle";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="A_tiny_ketchup_bottle,_small_enough";b.h.desc_line2="for_a_Frog_to_use._Would_go";b.h.desc_line3="great_with_some_Mustard!";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest3",a);a=newl();b=newl();b.h.displayName="Mustard_Bottle";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="A_tiny_mustard_bottle,_small_enough";b.h.desc_line2="for_a_Frog_to_never_use_because";b.h.desc_line3="mustard_is_gross._Would_go_great";b.h.desc_line4="with_some_Ketchup!";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest4",a);a=newl();b=newl();b.h.displayName="Mayonnaise_Bottle";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="TRASH";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Why_did_someone_bury_a_bottle_of_mayo?_Wait..._why_did_you_go_dig_it_up??";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Mayo",a);a=newl();b=newl();b.h.displayName="Broken_Weapon";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="TRASH";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_totally_broken.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Trash",a);a=newl();b=newl();b.h.displayName="Dried_Paint_Blob";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="TRASH";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Its_all_hard_and_crusty_now.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Trash2",a);a=newl();b=newl();b.h.displayName="Engraved_Bullet";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="TRASH";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_a_bullet,_and_it's_got_your_name_on_it!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Trash3",a);a=newl();b=newl();b.h.displayName="Class_Certificate";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_selected_a_class!_You're_on_your_way_to_the_top,_this_is_just_the_beginning!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest5",a);a=newl();b=newl();b.h.displayName="Scouting_Report";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It_says_a_Giant_Wolf-like_Golem_was";b.h.desc_line2="seen_walking_with_the_gem_even";b.h.desc_line3="deeper_into_the_Jungle.";b.h.desc_line4="Stiltzcho_has_purposefully_smudged_his";b.h.desc_line5="signature_so_that_it's_not";b.h.desc_line6="readable.";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest6",a);a=newl();b=newl();b.h.displayName="Strange_Rock";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Looks_like_the_piece_of_a_golem.";b.h.desc_line2="It_even_has_'Made_In_Golemtopia'";b.h.desc_line3="engraved_on_the_side_of_it.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest7",a);a=newl();b=newl();b.h.displayName="Filler_bc_I_messed_up";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Filler.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest8",a);a=newl();b=newl();b.h.displayName="Green_Tea";b.h.sellPrice=1e3;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You're_playing_a_game_right_now";b.h.desc_line2="with_a_sub-plot_that_involves_a";b.h.desc_line3="jar_of_sand_falling_in_love_with";b.h.desc_line4="a_cup_of_tea._Just_thought_I'd";b.h.desc_line5="point_that_out.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest10",a);a=newl();b=newl();b.h.displayName="Forest_Villas|Flyer_Thingy";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Solid_evidence_that_it's_possible";b.h.desc_line2="to_have_a_negative_crafting_level.";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest11",a);a=newl();b=newl();b.h.displayName="Wood_Board_Bone";b.h.sellPrice=7;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Dog_Bone_will_give_you_Boss_Keys_once_you_collect_a_few_of_these!_Idk_why_they_named_a_ghost_after_these_bones..._or_were_these_bones_named_after_the_ghost?";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest12",a);a=newl();b=newl();b.h.displayName="Empty_Box";b.h.sellPrice=7;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="An_empty_box,_the_perfect_place_to_put_all_your_Hermit_Cans,_Megalodon_teeth,_and_pure_water..._that_you_don't_have_anymore_haha!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest13",a);a=newl();b=newl();b.h.displayName="Triumphant_Treason";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_a_rendition_of_the_Battle_of_Sassasge,_wherein_Goldrichius_Von_Gallbladder_waged_war_on_the_municipal_kingdom_of_Sterling_S._Elvar";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("GoldricP2",a);a=newl();b=newl();b.h.displayName="Claiming_Cashe";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="The_victory_portrait_of_King_Goldrichius_Sr._after_successfully_dethroning_S.S._Elvar_from_the_East_Yum-Yum_dunedaries.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("GoldricP3",a);a=newl();b=newl();b.h.displayName="Giftmas_Box";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_open!_There's_a_santa_hat_in_one_of_these,_as_well_as_various_holiday_exclusive_goodies,_even_cards!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest30",a);a=newl();b=newl();b.h.displayName="Gem_Note";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="LAVA_LETTER";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Did_you_like_those_20_gems_you_just_picked_up?_Well_you'll_LOVE_the_500_gems_I_just_added_to_your_account._This_paper_is_worthless_btw_lol_it's_just_a_picture_of_a_gem.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest31",a);a=newl();b=newl();b.h.displayName="Bolt_Cutters";b.h.sellPrice=5e3;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="I_bet_if_you_dropped_these_on_a_sewer_grating,_it_would_snap_the_bars_right_off!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Cutter",a);a=newl();b=newl();b.h.displayName="Monster_Rating";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="'I_literally_just_die_over_and_over,_I_can't_even_fight_back_other_than_just_running_into_them._Honestly_I_wish_I_was_dead,_but_even_then_I_just_keep_respawning,_literally_the_worst_experience_ever,_1_star!!'";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest32",a);a=newl();b=newl();b.h.displayName="Player_Rating|With_Letter_P";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="'WTF_y_do_my_items_CONSTANTLY_DISAPPEAR_I_HATE_IT!!_Complete_RUBBISH!_1_STAR_UNTIL_YOU_FIX_MY_SPECIFIC_PROBLEM_and_even_then_I'll_probably_just_raise_it_to_2_stars_lol'";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest33",a);a=newl();b=newl();b.h.displayName="Player_Rating|With_Letter_S";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="'This_is_NOT_an_Idle_game!_I_actually_have_to_play_it_sometimes!_And_why_are_there_actual_pictures_on_the_screen,_instead_of_just_words_and_text_boxes??_I_can't_believe_I_paid_0_dollars_for_this_trash!'";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest34",a);a=newl();b=newl();b.h.displayName="Googley_Eyes";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SUMMON_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="I_remember_when_I_was_a_kid,_I_spent_an_HOUR_making_a_GLASS_container_look_like_it_was_a_little_friend_using_googley_eyes_just_like_these!_If_only_there_was_a_CONTAINER_in_this_game,_so_you_could_do_it_to!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest35",a);a=newl();b=newl();b.h.displayName="Dootjat_Eye";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SUMMON_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Blinks_repeatedly_when_close_to_the_Black_Market,_where_you_buy_the_Ankh_used_in_the_ice_zone_to_get_the_Hedjet..._wait,_wrong_game,_sorry!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest36",a);a=newl();b=newl();b.h.displayName="Silver_Antique";b.h.sellPrice=2e4;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="HUNK_OF_JUNK";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="An_old_lady_pawned_it_off_to_the_bazaar_claiming_it_was_some_'ancient_artifact_of_the_pharoah_King_Doot'._It's_probably_just_scrap_metal,_doubt_it's_even_real_silver._Would_make_for_a_decent_Necklace!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest37",a);a=newl();b=newl();b.h.displayName="Guild_Giftbox";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_open!_Contains_a_random_cool-kid_item,_like_gems,_exp_balloons,_or_even_time_candy!_Also,_1_in_every_500_gifts_contains_the_'Ultra_Unboxer'_Trophy!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest38",a);a=newl();b=newl();b.h.displayName="Lovey_Dovey|Letter";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_a_letter_to_spawn_a_Valenslime!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest39",a);a=newl();b=newl();b.h.displayName="Choco_Box";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_open_a_random_reward!_Possibilites_include_Gems,_exclusive_hats,_event_food,_event_cards,_and_more!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest40",a);a=newl();b=newl();b.h.displayName="Flowies";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Curse_you_flowey!_I_trusted_you,_I_accepted_your_pellets_of_friendship,_and_then_you_had_to_go_and_throw_it_all_away!_And_now_here_you_are,_trying_to_take_over_yet_another_video_game..._well_I_NOT_GONNA_LE--_oh_wait,_these_are_just_normal_flowers";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest41",a);a=newl();b=newl();b.h.displayName="Egg_Capsule";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_open_for_a_random_reward!_Or,_hold_down_for_a_LONG_time_to_open_them_faster..._yea,_dreams_do_come_true_#";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest42",a);a=newl();b=newl();b.h.displayName="Gummy_Bunny";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_summon_a_friendly_easter_monster._But_be_careful,_unlike_real_life_where_all_friends_are_genuine,_these_monsters_are_just_pretending_to_be_your_friend_for_personal_gain!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest43",a);a=newl();b=newl();b.h.displayName="Goldegg_Capsule";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_summon_a_mini_boss_or_a_green_mushroom._It's_a_50_50_shot_which_one_you_get!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest44",a);a=newl();b=newl();b.h.displayName="Sesame_Seed";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_KEY";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="The_key_to_Bandit_Bob's_Party_Dungeon!_No_not_that_dungeon..._you're_thinking_of_Snakenhotep's_Dungeon,_this_one's_for_Bandit_Bob's_dungeon._So_yea,_this_is_worthless.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest45",a);a=newl();b=newl();b.h.displayName="The_Bobber|Challenge_Scroll";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="A_great_behemoth_has_emerged_from_its_slumber..._and_it_now_roams_the_fishing_minigame!_If_you_catch_2_whales,_then_purposefully_avoid_catching_the_3rd_whale,_the_ocean_behemoth_will_eventually_appear!_Catch_it_to_win_a_trophy!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest46",a);a=newl();b=newl();b.h.displayName="Elderly_Peanut";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It_has_a_very_peculiar_stench..._the_smell_is_so_unbearable,_your_damage_is_lowered_by_50%_and_your_Max_HP_is_just_1!_Only_the_sands_of_a_dead_Biggie_Hours_Miniboss_could_reverse_the_aging_this_peanut_has_undergone!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest47",a);a=newl();b=newl();b.h.displayName="Pete_the_Peanut";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Now_that's_a_happy_looking_peanut!_I_wish_he_was_MY_best_friend,_but_no_one_wants_to_be_friends_with_sentient_item_dialogue_^";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest48",a);a=newl();b=newl();b.h.displayName="Summer_Cooler";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_open_for_a_random_reward!_Or,_hold_down_for_a_LONG_time_to_open_them_faster.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest49",a);a=newl();b=newl();b.h.displayName="Beach_Oyster";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_summon_a_bunch_of_Summer_Monsters,_and_get_a_random_Pearl!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest50",a);a=newl();b=newl();b.h.displayName="Golden_Oyster";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_get_a_random_special_reward!_Event_Points_do_not_expire,_you_keep_all_unspent_Event_Points_for_next_event!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest88",a);a=newl();b=newl();b.h.displayName="Skull_Coin";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_seeing_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest51",a);a=newl();b=newl();b.h.displayName="Coin";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_seeing_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest52",a);a=newl();b=newl();b.h.displayName="Palm_Tree_Log";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_seeing_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("PalmTreeD",a);a=newl();b=newl();b.h.displayName="Black_Pearl";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_gain_20%_EXP_in_the_skill_that's_shown_in_the_corner_of_the_screen._If_you're_in_a_town,_you_will_gain_EXP_in_the_town_skill._Only_works_on_skills_below_level_30.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Pearl4",a);a=newl();b=newl();b.h.displayName="Holy_Pearl";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_gain_Class_EXP._The_amount_you_gain_is_based_on_your_Class_LV.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Pearl5",a);a=newl();b=newl();b.h.displayName="Divinity_Pearl";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_gain_40%_EXP_in_the_current_skill_you're_doing!_If_you're_in_a_town,_you_will_gain_EXP_in_the_town_skill._Only_works_on_skills_below_level_50._IMPORTANT:_This_cannot_be_used_for_skills_in_World_5_or_beyond.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Pearl6",a);a=newl();b=newl();b.h.displayName="Meat_Cube";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_seeing_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest53",a);a=newl();b=newl();b.h.displayName="Sand_Pile";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_seeing_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest54",a);a=newl();b=newl();b.h.displayName="Buried_Treasure";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_seeing_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest55",a);a=newl();b=newl();b.h.displayName="Dootophone";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_vintage_Dootophone_to_active_all_the_obelisks_on_Doot's_burial_platform_at_once!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest56",a);a=newl();b=newl();b.h.displayName="Damaged_Cog";b.h.sellPrice=5e8;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_cog_to_turn_it_into_a_Refurbished_Cog,_IF_you_have_a_construction_LV_of_75{.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest57",a);a=newl();b=newl();b.h.displayName="Refurbished_Cog";b.h.sellPrice=500000010;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Made_from_a_Damaged_Cog,_which_you_can_buy_at_the_Town_Shop!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest58",a);a=newl();b=newl();b.h.displayName="Shuvelle's_Vote";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="A_slip_of_paper_indicating_that_a_Ms._Shuvelle_La_Deuge_intends_to_vote_for_Mayor_Hoggindaz";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest59",a);a=newl();b=newl();b.h.displayName="Yondergreens_Vote";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="A_slip_of_paper_indicating_that_a_Sir_Yondergreen_Von_Timberbottom_intends_to_vote_for_Mayor_Hoggindaz";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest60",a);a=newl();b=newl();b.h.displayName="Bill_Brr's_Vote";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="A_slip_of_paper_indicating_that_a_Mr._Bill_Brr_doesn't_intend_to_vote_for_any_of_these_political_puppets,_but_he_left_it_blank_so_you_filled_it_in_for_Hoggi.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest61",a);a=newl();b=newl();b.h.displayName="Signed_Contract";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_the_last_will_and_testament_of_some_penguin_monster._Just_pretend_you_signed_it,_ol'_Yondergreen_seems_a_little_blind_and_probably_wont_notice.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest62",a);a=newl();b=newl();b.h.displayName="Shovel";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_seeing_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest63",a);a=newl();b=newl();b.h.displayName="2021_Giftmas_Box";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_to_open!_Contains_a_random_Giftmas_goodie,_from_event_cards_to_foods!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest64",a);a=newl();b=newl();b.h.displayName="Pile_of|Processor_Chips";b.h.sellPrice=625e3;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="LAB_ADDITION";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Collect_3_of_these,_then_hold_down_on_the_stack_of_3_to_unlock_the_Chip_Repository!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest65",a);a=newl();b=newl();b.h.displayName="Strung_Jewels";b.h.sellPrice=25e5;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="LAB_ADDITION";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Collect_7_of_these,_then_hold_down_on_the_stack_of_7_to_unlock_the_Jewel_Spinner!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest66",a);a=newl();b=newl();b.h.displayName="Bottled_World|Town_Teleport";b.h.sellPrice=1e6;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="TELEPORT";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Buy_this_once_and_hold_down_on_it_to_permanently_allow_for_free_teleports_inbetween_World_Towns_without_consuming_a_teleport!_From_town_to_town,_free_of_charge!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest67",a);a=newl();b=newl();b.h.displayName="Anvil_Reset|Whetstone";b.h.sellPrice=3e5;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_item_to_completely_reset_your_spent_Anvil_Points_for_this_character.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Whetstone",a);a=newl();b=newl();b.h.displayName="Bucket_of_Slush";b.h.sellPrice=1e3;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="BUCKET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Drop_this_on_the_snowy_pile_in_the_Refigeration_Station_in_World_3._There_are_rumors_that_the_recent_snowfall_will_coagulate_with_the_slush_in_horrible_ways...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest68",a);a=newl();b=newl();b.h.displayName="Skull";b.h.sellPrice=1e3;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It_may_be_a_skull,_but_it_sure_ain't_no_Killroy!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest69",a);a=newl();b=newl();b.h.displayName="Phone_Box";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="IdleOn_is_out_on_iOS_devices!_The_Rift_Ripper_must_have_kept_a_few_of_these_back_when_he_played_during_the_iOS_Launch_event..._Hold_down_to_open,_and_a_random_reward_will_drop_at_your_feet!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest70",a);a=newl();b=newl();b.h.displayName="Gem_Envelope";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Contains_a_random_number_of_gems,_hold_down_to_open!_It_could_be_just_a_couple_gems,_but_it_could_also_have_as_many_as_10,000_gems!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest71",a);a=newl();b=newl();b.h.displayName="Bottled_Wind";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="BOTTLED_WIND";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_instantly_gain_6_Hours_of_Sailing_Progress!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest72",a);a=newl();b=newl();b.h.displayName="Gaming_Fertilizer";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="GAMER_SOIL";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_instantly_gain_8_Hours_of_Gaming_Progress!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest73",a);a=newl();b=newl();b.h.displayName="Rift_Tear";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_shouldn't_be_reading_this..._unless_it's_like_on_the_Wiki_or_something,_then_yea_I_ain't_pointin'_no_fingers_or_nothing.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest74",a);a=newl();b=newl();b.h.displayName="Spring_Baggie";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_to_open!_Contains_a_random_Spring_Event_goodie,_from_event_cards_to_foods!_ALSO,_if_you_open_a_total_of_500_Baggies,_you'll_get_a_limited_edition_Spring_event_NAMETAG!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest75",a);a=newl();b=newl();b.h.displayName="Silver|Pocketwatch";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_change_your_daily_reset_time_by_15_minutes._If_this_item_is_on_the_left_side_of_the_inventory,_your_daily_reset_will_be_15_minutes_LATER._If_it's_on_the_right_side,_your_daily_reset_will_be_15_minutes_EARLIER.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest76",a);a=newl();b=newl();b.h.displayName="Gold|Pocketwatch";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_fast_forward_a_day,_restocking_shops_and_triggering_various_daily_rewards_and_systems.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest77",a);a=newl();b=newl();b.h.displayName="Equinox_Mirror";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="TELEPORTER";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_enter_the_Equinox_Valley_map._You_can_later_teleport_there_from_the_map_once_you_unlock_Dreams";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest78",a);a=newl();b=newl();b.h.displayName="Falloween_Treat";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_to_open!_Contains_a_random_Falloween_Event_goodie,_including_3_limited_time_Monster_Masks,_check_Patch_Notes_in_Discord_or_Steam_for_info!_Also,_if_you_open_500_Treats_you'll_get_the_Falloween_Event_NAMETAG!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest79",a);a=newl();b=newl();b.h.displayName="Crop_Transfer|Ticket";b.h.sellPrice=1e14;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Drop_this_on_the_Legumulyte_(found_deep_in_Bamboo_Forest)_to_trade_in_ALL_your_crops_for_magic_beans_(Crop_Scientist_progress_wont_be_lost)_Or,_hold_down_on_ticket_to_see_how_many_beans_you_will_get_(you_wont_lose_anything_doing_this)";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest80",a);a=newl();b=newl();b.h.displayName="Compost_Bag";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="FARM_COMPOST";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_instantly_gain_4_Hours_of_Farming_Progress!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest81",a);a=newl();b=newl();b.h.displayName="Summoner_Stone";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SUMMONER_STONE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_instantly_gain_4_Hours_of_Summoning_Essence_Generation!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest82",a);a=newl();b=newl();b.h.displayName="Blue_Tome_Pages";b.h.sellPrice=1e11;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DROPPABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Drop_a_stack_of_2_of_these_on_the_Tome_to_permanently_add_a_new_Bonus_Type!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest83",a);a=newl();b=newl();b.h.displayName="Red_Tome_Pages";b.h.sellPrice=1e15;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DROPPABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Drop_a_stack_of_7_of_these_on_the_Tome_to_permanently_add_a_new_Bonus_Type!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest84",a);a=newl();b=newl();b.h.displayName="Anniversary_Box";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="IdleOn_is_5_years_old!_Hold_down_to_open_this_box_and_celebrate!_Contains_a_random_Anniversary_goodie,_from_event_cards_to_foods_to_special_event_hats!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest85",a);a=newl();b=newl();b.h.displayName="Basketball";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_item_to_play_Basketball!_This_way_you_can_play_from_ANY_map,_even_while_Auto_mode_is_on!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest86",a);a=newl();b=newl();b.h.displayName="Secret_Map";b.h.sellPrice=1e4;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_item_while_standing_in_the_secret_location_to_teleport_to_The_Oasis...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest87",a);a=newl();b=newl();b.h.displayName="Event_Point";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_item_to_get_1_Event_Point!_Spend_these_at_the_Event_NPC_in_town_for_permanent_bonuses,_and_don't_worry,_unspent_points_are_saved_for_next_event!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest89",a);a=newl();b=newl();b.h.displayName="Blinding_Lantern";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_instantly_gain_2_Hours_of_all_Cavern_progress_and_Villager_exp_gain!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest90",a);a=newl();b=newl();b.h.displayName="Golden_Gift";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_get_a_random_special_reward!_Event_Points_do_not_expire,_you_keep_all_unspent_Event_Points_for_next_event!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest91",a);a=newl();b=newl();b.h.displayName="Giftmas_Present";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Contains_a_random_Giftmas_goodie,_from_event_cards_to_foods_and_maybe_even_a_GOLDEN_GIFT!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest92",a);a=newl();b=newl();b.h.displayName="Worship_Floppy|Disc";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Collect_1000_or_more_of_these,_then_HOLD_DOWN_on_them_to_unlock_the_Saveload_Feature_for_ALL_Worship_runs!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest93",a);a=newl();b=newl();b.h.displayName="Temple_Torch";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_really_shouldn't_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest94",a);a=newl();b=newl();b.h.displayName="Winter_Candle";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_WISH";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_candle_to_make_a_wish_for_new_pets!_Who_knows,_maybe_they'll_come_true!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest95",a);a=newl();b=newl();b.h.displayName="Lucky_Candle";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_WISH";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_candle_to_see_the_5th_Birthday_Lucky_Pet_winners_list!_There's_a_new_winner_every_5_MINUTES!_WOW!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest111",a);a=newl();b=newl();b.h.displayName="Aethermoon";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_instantly_get_1_Hour_of_Dust_added_to_the_Compass!_The_amount_is_based_on_the_current_hourly_rate_shown_in_AFK_info._You_must_be_on_your_Windwalker_to_use_this.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest96",a);a=newl();b=newl();b.h.displayName="Charred_Bone";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_instantly_get_1_Hours_of_Bones_added_to_the_Grimoire!_The_amount_is_based_on_the_current_hourly_rate_shown_in_AFK_info._You_must_be_on_your_Deathbringer_to_use_this.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest97",a);a=newl();b=newl();b.h.displayName="Charred_Fragment";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Collect_1000_of_these_to_unlock_AFK_Bones_for_Deathbringer!_Once_you_have_1000,_hold_down_on_this_item._You_will_then_earn_1_Charred_Bone_per_1hr_AFK_claimed_on_your_Deathbringer.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest98",a);a=newl();b=newl();b.h.displayName="Prisma_Bubble";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldn't_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest99",a);a=newl();b=newl();b.h.displayName="Aether_Fragment";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Collect_1000_of_these_to_unlock_AFK_Dust_for_Windwalker!_Once_you_have_1000,_hold_down_on_this_item._You_will_then_earn_1_Aethermoon_per_1hr_AFK_claimed_on_your_Windwalker.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest100",a);a=newl();b=newl();b.h.displayName="Arcane_Rock";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_instantly_get_1_Hours_of_Tachyons_added_to_the_Tesseract!_The_amount_is_based_on_the_current_hourly_rate_shown_in_AFK_info._You_must_be_on_your_Arcane_Cultist_to_use_this.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest101",a);a=newl();b=newl();b.h.displayName="Spirit_Offering";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="INGREDIENT";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Used_in_the_creation_of_World_6_time_candies._Get_the_recipe_from_world_7_fish!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest102",a);a=newl();b=newl();b.h.displayName="Strange_Gold_Piece";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="UNKNOWN";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="I_already_told_you,_I_have_no_idea_what_this_is..._how_about_YOU_tell_ME_an_item's_description_for_once,_eh?";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("CaveGoldPiece",a);a=newl();b=newl();b.h.displayName="Fishbowl";b.h.sellPrice=1e30;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SECRET_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_got_two_fish,_but_more_importantly,_it's_got_four_water!_..._no,_FIVE_water!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest103",a);a=newl();b=newl();b.h.displayName="Darts";b.h.sellPrice=1e3;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_item_to_play_Darts!_This_way_you_can_play_from_ANY_map,_even_while_Auto_mode_is_on!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest104",a);a=newl();b=newl();b.h.displayName="Unstable|Reliquarium";b.h.sellPrice=1e32;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SECRET_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Bring_this_to_the_crazy_prince_of_Coralcave,_but_be_warned..._______Whilst_in_your_posession,_your_damage_will_be_greatly_reduced,_only_worsening_with_every_successful_delivery.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest105",a);a=newl();b=newl();b.h.displayName="Urie's_Special|Childhood_Rock";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Ewww_this_smells_like_hardened..._cooking_oil..?_Oh,_oooohhh!________Drop_this_at_the_beanstalk,_and_you'll_be_able_to_drop_stacks_of_1_million_of_each_Golden_Food_for_even_larger_bonuses!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest106",a);a=newl();b=newl();b.h.displayName="Arcane_Fragment";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Collect_1000_of_these_to_unlock_AFK_Tachyons_for_Arcane_Cultist!_Once_you_have_1000,_hold_down_on_this_item._You_will_then_earn_1_Arcane_Rock_per_1hr_AFK_claimed_on_your_Arcane_Cultist.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest107",a);a=newl();b=newl();b.h.displayName="Stamina_Battery";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_instantly_regenerate_the_Spelunking_Stamina_for_all_your_players!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest108",a);a=newl();b=newl();b.h.displayName="Cropfall_Basket";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_open,_and_keep_holding_to_open_multiple._Drops_a_random_Cropfall_goodie_on_the_ground,_from_event_cards_to_special_event_items!_Remember_to_collect_all_50_each_day_for_a_FREE_Wheel_Spin!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest109",a);a=newl();b=newl();b.h.displayName="Zenith_Cluster";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CURRENCY";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Created_by_having_1,000,000_Statues_in_your_inventory_at_once..._@_Bring_these_to_the_Zenelith_in_World_7_in_exchange_for_powerful_bonuses!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest110",a);a=newl();b=newl();b.h.displayName="Giftmas_Gift";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_open!_Contains_a_random_Giftmas_goodie,_from_gems_to_limited_time_Hats_and_Nametags!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest113",a);a=newl();b=newl();b.h.displayName="Glimmerwick|Candle";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_make_a_wish._If_it_comes_true,_you_will_get_a_Top_0.1%_Tome_Nametag,_just_like_you've_always_wanted!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest114",a);a=newl();b=newl();b.h.displayName="Half_Finished|Research_Papers";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_instantly_gain_2_Hours_of_Research_progress!_That_includes_Minehead_currency_too!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest115",a);a=newl();b=newl();b.h.displayName="Edible_Coin";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_open!_Contains_a_random_Goldrush_goodie,_from_gems_to_limited_time_Hats_and_Nametags!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest117",a);a=newl();b=newl();b.h.displayName="Anvil_Tab_2";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=2;b.h.Type="ANVIL_EXPANSION";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Unlocks_the_2nd_tab_of_craftable";b.h.desc_line2="items_for_all_anvils!";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentSmithingTabs2",a);a=newl();b=newl();b.h.displayName="Anvil_Tab_3";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=3;b.h.Type="ANVIL_EXPANSION";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Unlocks_the_3rd_tab_of_craftable";b.h.desc_line2="items_for_all_anvils!";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentSmithingTabs3",a);a=newl();b=newl();b.h.displayName="Anvil_Tab_4";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=4;b.h.Type="ANVIL_EXPANSION";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Unlocks_the_4th_tab_of_craftable";b.h.desc_line2="items_for_all_anvils!";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentSmithingTabs4",a);a=newl();b=newl();b.h.displayName="Anvil_Tab_5";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=5;b.h.Type="ANVIL_EXPANSION";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Unlocks_the_5th_tab_of_craftable";b.h.desc_line2="items_for_all_anvils!";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentSmithingTabs5",a);a=newl();b=newl();b.h.displayName="Anvil_Tab_6";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=6;b.h.Type="ANVIL_EXPANSION";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Unlocks_the_6th_tab_of_craftable";b.h.desc_line2="items_for_all_anvils!";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentSmithingTabs6",a);a=newl();b=newl();b.h.displayName="Anvil_Tab_7";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=7;b.h.Type="ANVIL_EXPANSION";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Unlocks_the_7th_tab_of_craftable";b.h.desc_line2="items_for_all_anvils!";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentSmithingTabs7",a);a=newl();b=newl();b.h.displayName="Power_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=0;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="A_stone_statue_sculpted_in_the";b.h.desc_line2="likeness_of_an_absolute_unit.";b.h.desc_line3="Give_this_to_the_Statue_Man_in";b.h.desc_line4="return_for_some_bonus_stats.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues1",a);a=newl();b=newl();b.h.displayName="Speed_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=1;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="A_stone_statue_that_isnt_actually";b.h.desc_line2="fast_because_its_made_of_stone";b.h.desc_line3="and_stone_can't_move.";b.h.desc_line4="Give_this_to_the_Statue_Man_in";b.h.desc_line5="return_for_some_bonus_stats";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues2",a);a=newl();b=newl();b.h.displayName="Mining_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=2;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="A_stone_statue_that_resembles";b.h.desc_line2="some_sort_of_double_edged_scythe.";b.h.desc_line3="Give_this_to_the_Statue_Man_in";b.h.desc_line4="return_for_some_bonus_stats";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues3",a);a=newl();b=newl();b.h.displayName="Feasty_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=3;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="A_stone_statue_that_looks_good";b.h.desc_line2="enough_to_eat_to_anyone_who";b.h.desc_line3="doesn't_notice_that_it's_inedible.";b.h.desc_line4="Give_this_to_the_Statue_Man_in";b.h.desc_line5="return_for_some_bonus_stats";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues4",a);a=newl();b=newl();b.h.displayName="Health_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=4;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="A_stone_statue_made_by_someone";b.h.desc_line2="for_a_romantic_propsal._I_don't";b.h.desc_line3="think_it_ended_well.";b.h.desc_line4="Give_this_to_the_Statue_Man_in";b.h.desc_line5="return_for_some_bonus_stats";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues5",a);a=newl();b=newl();b.h.displayName="Kachow_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=5;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="A_stone_statue_named_after_the";b.h.desc_line2="catch_phrase_of_a_very_fast_and";b.h.desc_line3="very_not_real_red_car.";b.h.desc_line4="Give_this_to_the_Statue_Man_in";b.h.desc_line5="return_for_some_bonus_stats";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues6",a);a=newl();b=newl();b.h.displayName="Lumberbob_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=6;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="A_stone_statue_named_in_a_world";b.h.desc_line2="where_the_name_Jack_doesn't";b.h.desc_line3="exist.";b.h.desc_line4="Give_this_to_the_Statue_Man_in";b.h.desc_line5="return_for_some_bonus_stats";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues7",a);a=newl();b=newl();b.h.displayName="Thicc_Skin_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=7;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="I_don't_think_the_sculptor_who_named_this_statue_back_in_3000_BC_would_be_happy_with_how_his_typo_would_be_interpreted.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues8",a);a=newl();b=newl();b.h.displayName="Oceanman_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=8;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="What's_that,_statue?_You_want_to..._take_me_by_the_hand_and_lead_me_to_the_land?_With_that_land_pecifically_being_the_one_that_you_understand?";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues9",a);a=newl();b=newl();b.h.displayName="Ol_Reliable|Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=9;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="It_takes_a_true_artist_to_make_a_realistic_statue_like_this_one._He_captured_the_flying_aspect_of_those_stone_flies_perfectly!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues10",a);a=newl();b=newl();b.h.displayName="Exp_Book_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=10;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="I_haven't_read_a_book_since_middle_school,_so_I'm_just_assuming_this_is_what_they_look_like.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues11",a);a=newl();b=newl();b.h.displayName="Anvil_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=11;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="A_little_monument_to_the_efforts_of_a_most_devious_coyote,_whose_dreams_were_always_just_out_of_reach,_and_whose_head_often_felt_the_crushing_blow_of_defeat.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues12",a);a=newl();b=newl();b.h.displayName="Cauldron_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=12;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="They_used_to_tie_women_to_these_things_and_throw_them_into_the_ocean_to_see_if_they_were_a_witch._If_they_were,_they'd_use_all_the_water_in_the_ocean_to_upgrade_the_cauldron_and_thus_not_drown!_Not_sure_what_happened_if_they_werent.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues13",a);a=newl();b=newl();b.h.displayName="Beholder_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=13;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="This_statue_is_beautiful!_Well,_at_least_to_me.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues14",a);a=newl();b=newl();b.h.displayName="Bullseye_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=14;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="This_statue_was_created_by_shooting_a_target_statue_into_a_stationary_arrow_statue.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues15",a);a=newl();b=newl();b.h.displayName="Box_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=15;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="It's_more_of_an_open_container_than_a_box,_really.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues16",a);a=newl();b=newl();b.h.displayName="Twosoul_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=16;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="A_statue_of_the_soul.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues17",a);a=newl();b=newl();b.h.displayName="EhExPee_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=17;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="The_sculptor_got_so_fed_up_with_people_misinterpreting_his_previous_statues,_he_felt_the_need_to_spell_this_one_out.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues18",a);a=newl();b=newl();b.h.displayName="Seesaw_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=18;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="The_end_result_of_someone_trying_to_cut_a_slab_in_half_with_a_ceramic_saw,_and_then_leaving_early_after_they_saw_me_watching_them_in_the_bushes,_writing_down_what_they_were_doing_in_this_description.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues19",a);a=newl();b=newl();b.h.displayName="Pecunia_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=19;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="This_statue_gonna_make_u_heckin_rich!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues20",a);a=newl();b=newl();b.h.displayName="Mutton_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=20;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="This_statue_makes_me_really_hungry..._but_for_some_reason_it_inspires_me_to_cook_rather_than_giving_higher_food_bonuses.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues21",a);a=newl();b=newl();b.h.displayName="Egg_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=21;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="This_statue_somehow_boosts_the_effectiveness_of_Mobs_getting_it_on...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues22",a);a=newl();b=newl();b.h.displayName="Battleaxe_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=22;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="This_statue_makes_you_do_more_damage._Nothing_fancy.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues23",a);a=newl();b=newl();b.h.displayName="Spiral_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=23;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="This_statue_will_bring_you_closer_to_god._Or_gods_in_this_case,_the_world_of_IdleOn_is_polytheistic!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues24",a);a=newl();b=newl();b.h.displayName="Boat_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=24;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="This_statue_does_not_actually_function_as_a_boat,_and_will_sink_immediately,_as_youd_expect_a_large_piece_of_stone_would.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues25",a);a=newl();b=newl();b.h.displayName="Compost_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=25;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="This_statue_looks_exactly_like_the_Compost_pot_in_the_Floating_Gardens_of_the_Spirit_Valley_town.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues26",a);a=newl();b=newl();b.h.displayName="Stealth_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=26;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="This_statue_was_crafted_in_the_image_and_likeness_of_the_legendary_Gray_Fox._The_resemblance_to_your_meager_stick_figure_bodies_is_purely_coincidental.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues27",a);a=newl();b=newl();b.h.displayName="Essence_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=27;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="This_statue,_despite_being_a_grey_brownish_colour,_actually_helps_generate_white_essence._It's_weird_and_quirkly_like_that...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues28",a);a=newl();b=newl();b.h.displayName="Villager|Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=28;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="It_gives_a_MULTIPLICATIVE_bonus_of_Villager_EXP,_despite_the_bonus_description_saying_percent!_Wowie_Zowie_Multerrific!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues29",a);a=newl();b=newl();b.h.displayName="Dragon_Warrior|Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=29;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="It_somehow_boosts_the_bonuses_given_by_all_other_statues!!!_You_don't_understand_what_that_means?_It's_ok,_I_didn't_get_it_the_first_time_either...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues30",a);a=newl();b=newl();b.h.displayName="Spelunky|Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=30;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="This_statue_right_here_will_boost_your_Spelunking_EXP_gain!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues31",a);a=newl();b=newl();b.h.displayName="Reef_Coral|Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=31;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="I_think_this_statue_will_give_you_more_Daily_Coral_for_the_Coral_Reef!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues32",a);a=newl();b=newl();b.h.displayName="Beginner_Recipe";b.h.sellPrice=1;b.h.typeGen="aRecipe";b.h.ID=0;b.h.Type="ANVIL_RECIPE";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=999;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("SmithingRecipes1",a);a=newl();b=newl();b.h.displayName="Novice_Recipe";b.h.sellPrice=1;b.h.typeGen="aRecipe";b.h.ID=0;b.h.Type="ANVIL_RECIPE";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=999;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("SmithingRecipes2",a);a=newl();b=newl();b.h.displayName="Apprentice_Recipe";b.h.sellPrice=1;b.h.typeGen="aRecipe";b.h.ID=0;b.h.Type="ANVIL_RECIPE";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=999;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("SmithingRecipes3",a);a=newl();b=newl();b.h.displayName="Journeyman_Recipe";b.h.sellPrice=1;b.h.typeGen="aRecipe";b.h.ID=0;b.h.Type="ANVIL_RECIPE";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=999;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("SmithingRecipes4",a);a=newl();b=newl();b.h.displayName="Adept_Recipe";b.h.sellPrice=1;b.h.typeGen="aRecipe";b.h.ID=0;b.h.Type="ANVIL_RECIPE";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=999;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("SmithingRecipes5",a);a=newl();b=newl();b.h.displayName="Master_Recipe";b.h.sellPrice=1;b.h.typeGen="aRecipe";b.h.ID=0;b.h.Type="ANVIL_RECIPE";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=999;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("SmithingRecipes6",a);a=newl();b=newl();b.h.displayName="Virtuoso_Recipe";b.h.sellPrice=1;b.h.typeGen="aRecipe";b.h.ID=0;b.h.Type="ANVIL_RECIPE";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=999;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("SmithingRecipes7",a);a=newl();b=newl();b.h.displayName="Special_Talent|Book";b.h.sellPrice=100;b.h.typeGen="aTalentBook";b.h.ID=0;b.h.Type="TALENT_BOOK";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=999;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("TalentBook1",a);a=newl();b=newl();b.h.displayName="Beginner_Talent|Book";b.h.sellPrice=100;b.h.typeGen="aTalentBook";b.h.ID=0;b.h.Type="TALENT_BOOK";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=999;b.h.Class="BEGINNER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("TalentBook2",a);a=newl();b=newl();b.h.displayName="Warrior_Talent|Book";b.h.sellPrice=100;b.h.typeGen="aTalentBook";b.h.ID=0;b.h.Type="TALENT_BOOK";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=999;b.h.Class="WARRIOR";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("TalentBook3",a);a=newl();b=newl();b.h.displayName="Archer_Talent|Book";b.h.sellPrice=100;b.h.typeGen="aTalentBook";b.h.ID=0;b.h.Type="TALENT_BOOK";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=999;b.h.Class="ARCHER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("TalentBook4",a);a=newl();b=newl();b.h.displayName="Wizard_Talent|Book";b.h.sellPrice=100;b.h.typeGen="aTalentBook";b.h.ID=0;b.h.Type="TALENT_BOOK";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=999;b.h.Class="MAGE";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("TalentBook5",a);a=newl();b=newl();b.h.displayName="Smithing_Exp";b.h.sellPrice=1;b.h.typeGen="dExpOrb";b.h.ID=1;b.h.Type="EXPERIENCE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="A_little_ball_of_pure_energy!";b.h.desc_line2="It's_sole_purpose_is_to_give_the";b.h.desc_line3="creator_smithing_exp._It_is_basically";b.h.desc_line4="useless_in_its_crafted_state.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("ExpSmith1",a);a=newl();b=newl();b.h.displayName="Distilled_Water";b.h.sellPrice=50;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MATERIAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="The_full_filtration_process_also_involves_filtering_the_diamonds_through_a_vat_of_diamonds_before_using_those_filtered_diamonds_to_filter_the_water!_If_only_they'd_filter_their_filtration_process_through_diamonds_so_this_item_description_wouldn't_be_so_long.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("PureWater",a);a=newl();b=newl();b.h.displayName="Dense_Water";b.h.sellPrice=50;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MATERIAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="It's_like_a_bowl_of_oatmeal,_but_double_the_thiccness_and_hold_the_oats.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("PureWater2",a);a=newl();b=newl();b.h.displayName="Garbage";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Island0",a);a=newl();b=newl();b.h.displayName="Bottle";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Island1",a);a=newl();b=newl();b.h.displayName="Clam_Pearl";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("ClamPearl0",a);a=newl();b=newl();b.h.displayName="Pure_Pearl";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("ClamPearl1",a);a=newl();b=newl();b.h.displayName="Vibrant_Coral";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CORAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Give_these_to_the_Dancing_Coral_to_unlock_a_new_synergy_bonus_for_construction!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Coral1",a);a=newl();b=newl();b.h.displayName="Glowing_Coral";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CORAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Give_these_to_the_Dancing_Coral_to_unlock_a_new_synergy_bonus_for_construction!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Coral2",a);a=newl();b=newl();b.h.displayName="Char_Coral";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CORAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Give_these_to_the_Dancing_Coral_to_unlock_a_new_synergy_bonus_for_construction!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Coral3",a);a=newl();b=newl();b.h.displayName="Neon_Coral";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CORAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Give_these_to_the_Dancing_Coral_to_unlock_a_new_synergy_bonus_for_construction!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Coral4",a);a=newl();b=newl();b.h.displayName="Aegean_Coral";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CORAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Give_these_to_the_Dancing_Coral_to_unlock_a_new_synergy_bonus_for_construction!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Coral5",a);a=newl();b=newl();b.h.displayName="Gilded_Coral";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CORAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Give_these_to_the_Dancing_Coral_to_unlock_a_new_synergy_bonus_for_construction!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Coral6",a);a=newl();b=newl();b.h.displayName="Twisted_Coral";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CORAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Give_these_to_the_Dancing_Coral_to_unlock_a_new_synergy_bonus_for_construction!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Coral7",a);a=newl();b=newl();b.h.displayName="Eternal_Coral";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CORAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Give_these_to_the_Dancing_Coral_to_unlock_a_new_synergy_bonus_for_construction!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Coral8",a);a=newl();b=newl();b.h.displayName="Femur";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Bone0",a);a=newl();b=newl();b.h.displayName="Ribcage";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Bone1",a);a=newl();b=newl();b.h.displayName="Cranium";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Bone2",a);a=newl();b=newl();b.h.displayName="Bovinae";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Bone3",a);a=newl();b=newl();b.h.displayName="Stardust";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Dust0",a);a=newl();b=newl();b.h.displayName="Moondust";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Dust1",a);a=newl();b=newl();b.h.displayName="Solardust";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Dust2",a);a=newl();b=newl();b.h.displayName="Cooldust";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Dust3",a);a=newl();b=newl();b.h.displayName="Novadust";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Dust4",a);a=newl();b=newl();b.h.displayName="Commemorative_Coin";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("WWcoin",a);a=newl();b=newl();b.h.displayName="Singulon";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Tach0",a);a=newl();b=newl();b.h.displayName="Doubulon";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Tach1",a);a=newl();b=newl();b.h.displayName="Verdon";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Tach2",a);a=newl();b=newl();b.h.displayName="Bludon";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Tach3",a);a=newl();b=newl();b.h.displayName="Massivon";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Tach4",a);a=newl();b=newl();b.h.displayName="Aurion";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Tach5",a);""" # fmt: skip # noqa +script_item_definitions_4 = """R.itemDefs=newl();vara=newl(),b=newl();b.h.displayName="Pyromancer_Robes";b.h.sellPrice=1;b.h.typeGen="aGown";b.h.ID=1;b.h.Type="ATTIRE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=999;b.h.STR=1200;b.h.AGI=1200;b.h.WIS=1200;b.h.LUK=1200;b.h.Defence=3;b.h.UQ1txt="_FRAMES";b.h.UQ1val=163;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentGown0",a);a=newl();b=newl();b.h.displayName="Cobalt_Robe";b.h.sellPrice=1;b.h.typeGen="aGown";b.h.ID=2;b.h.Type="ATTIRE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=30;b.h.UQ1txt="%_DAMAGE_BONUS";b.h.UQ1val=100;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=60;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentGown1",a);a=newl();b=newl();b.h.displayName="Abyssal_Robe";b.h.sellPrice=1;b.h.typeGen="aGown";b.h.ID=3;b.h.Type="ATTIRE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=7;b.h.AGI=7;b.h.WIS=7;b.h.LUK=7;b.h.Defence=40;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=60;b.h.UQ2txt="%_DAMAGE_BONUS";b.h.UQ2val=50;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentGown2",a);a=newl();b=newl();b.h.displayName="Evergreen_Robe";b.h.sellPrice=1;b.h.typeGen="aGown";b.h.ID=4;b.h.Type="ATTIRE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=8;b.h.AGI=8;b.h.WIS=8;b.h.LUK=8;b.h.Defence=40;b.h.UQ1txt="%_BONUS_CLASS_EXP";b.h.UQ1val=100;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=75;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentGown3",a);a=newl();b=newl();b.h.displayName="Silkshard_Robe";b.h.sellPrice=1;b.h.typeGen="aGown";b.h.ID=5;b.h.Type="ATTIRE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=15;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=10;b.h.UQ1txt="%_BONUS_KILLS";b.h.UQ1val=100;b.h.UQ2txt="%_AFK_GAINS_MULTI";b.h.UQ2val=25;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentGown4",a);a=newl();b=newl();b.h.displayName="Corsair_Uniform";b.h.sellPrice=1;b.h.typeGen="aGown";b.h.ID=6;b.h.Type="ATTIRE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=20;b.h.STR=6;b.h.AGI=6;b.h.WIS=6;b.h.LUK=6;b.h.Defence=25;b.h.UQ1txt="%_BONUS_DROP_RATE";b.h.UQ1val=50;b.h.UQ2txt="%_EXTRA_MONEY";b.h.UQ2val=300;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentGown5",a);a=newl();b=newl();b.h.displayName="Bulwark_Armor";b.h.sellPrice=1;b.h.typeGen="aGown";b.h.ID=7;b.h.Type="ATTIRE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=25;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=50;b.h.UQ1txt="%_DAMAGE_BONUS";b.h.UQ1val=200;b.h.UQ2txt="%_BONUS_KILLS";b.h.UQ2val=150;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentGown6",a);a=newl();b=newl();b.h.displayName="Time_Traveler|Outfit";b.h.sellPrice=1;b.h.typeGen="aGown";b.h.ID=8;b.h.Type="ATTIRE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=25;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=50;b.h.UQ1txt="%_BONUS_MC_DROPS";b.h.UQ1val=300;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentGown7",a);a=newl();b=newl();b.h.displayName="Simple_Key_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain0",a);a=newl();b=newl();b.h.displayName="Leafy_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain1",a);a=newl();b=newl();b.h.displayName="Red_Sneaker_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain2",a);a=newl();b=newl();b.h.displayName="Wartooth_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain3",a);a=newl();b=newl();b.h.displayName="8_Ball_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain4",a);a=newl();b=newl();b.h.displayName="Piggy_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain5",a);a=newl();b=newl();b.h.displayName="Dumbphone_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain6",a);a=newl();b=newl();b.h.displayName="Horn_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain7",a);a=newl();b=newl();b.h.displayName="Rustic_Key_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain8",a);a=newl();b=newl();b.h.displayName="Taco_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain9",a);a=newl();b=newl();b.h.displayName="Cactus_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain10",a);a=newl();b=newl();b.h.displayName="Relic_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain11",a);a=newl();b=newl();b.h.displayName="Balloon_Dog_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain12",a);a=newl();b=newl();b.h.displayName="Frozen_Tart_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain13",a);a=newl();b=newl();b.h.displayName="Whatamelon_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain14",a);a=newl();b=newl();b.h.displayName="9_Ball_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain15",a);a=newl();b=newl();b.h.displayName="Pincer_Hand_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain16",a);a=newl();b=newl();b.h.displayName="Gilded_Key_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain17",a);a=newl();b=newl();b.h.displayName="Sushi_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain18",a);a=newl();b=newl();b.h.displayName="Time_Candy_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain19",a);a=newl();b=newl();b.h.displayName="Star_Blobulyte|Galaxy_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain20",a);a=newl();b=newl();b.h.displayName="Mmm_Donut_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain21",a);a=newl();b=newl();b.h.displayName="Negative_7_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain22",a);a=newl();b=newl();b.h.displayName="Diamond_Honker|Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain23",a);a=newl();b=newl();b.h.displayName="BobGoldPickle|Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=10;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain24",a);a=newl();b=newl();b.h.displayName="Eye_Owe_Ess_Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=5;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain25",a);a=newl();b=newl();b.h.displayName="Key_to_Desert|Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=5;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain26",a);a=newl();b=newl();b.h.displayName="Key_to_Mountains|Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=5;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain27",a);a=newl();b=newl();b.h.displayName="Key_to_Purgatory|Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=5;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain28",a);a=newl();b=newl();b.h.displayName="Spiritlord_Horn|Chain";b.h.sellPrice=200;b.h.typeGen="aKeychain";b.h.ID=0;b.h.Type="KEYCHAIN";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=400;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=25;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=5;b.h.UQ1txt="%_MONEY";b.h.UQ1val=30;b.h.UQ2txt="%_DAMAGE_MULTI";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentKeychain29",a);a=newl();b=newl();b.h.displayName="Junk_Pickaxe";b.h.sellPrice=50;b.h.typeGen="aPick";b.h.ID=0;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=3;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=1;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("EquipmentTools1",a);a=newl();b=newl();b.h.displayName="Copper_Pickaxe";b.h.sellPrice=800;b.h.typeGen="aPick";b.h.ID=1;b.h.Type="PICKAXE";b.h.lvReqToCraft="4";a.h.common=b;b=newl();b.h.lvReqToEquip=3;b.h.Class="ALL";b.h.Speed=3;b.h.Reach=0;b.h.Weapon_Power=6;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("EquipmentTools2",a);a=newl();b=newl();b.h.displayName="Iron_Pickaxe";b.h.sellPrice=5e3;b.h.typeGen="aPick";b.h.ID=0;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=8;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=5;b.h.AGI=2;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("EquipmentTools3",a);a=newl();b=newl();b.h.displayName="Gold_Pickaxe";b.h.sellPrice=1e4;b.h.typeGen="aPick";b.h.ID=2;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=13;b.h.STR=8;b.h.AGI=3;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("EquipmentTools5",a);a=newl();b=newl();b.h.displayName="Platinum_Pickaxe";b.h.sellPrice=200;b.h.typeGen="aPick";b.h.ID=3;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=25;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=16;b.h.STR=11;b.h.AGI=4;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("EquipmentTools6",a);a=newl();b=newl();b.h.displayName="Dementia_Pickaxe";b.h.sellPrice=200;b.h.typeGen="aPick";b.h.ID=4;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=37;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=0;b.h.Weapon_Power=19;b.h.STR=15;b.h.AGI=5;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("EquipmentTools7",a);a=newl();b=newl();b.h.displayName="Void_Imperium_Pik";b.h.sellPrice=200;b.h.typeGen="aPick";b.h.ID=5;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=45;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=0;b.h.Weapon_Power=24;b.h.STR=18;b.h.AGI=6;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=8;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("EquipmentTools11",a);a=newl();b=newl();b.h.displayName="Lustre_Pickaxe";b.h.sellPrice=200;b.h.typeGen="aPick";b.h.ID=6;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=55;b.h.Class="ALL";b.h.Speed=6;b.h.Reach=0;b.h.Weapon_Power=30;b.h.STR=25;b.h.AGI=10;b.h.WIS=0;b.h.LUK=0;b.h.Defence=7;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=12;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("EquipmentTools8",a);a=newl();b=newl();b.h.displayName="Starfire_Pickaxe";b.h.sellPrice=200;b.h.typeGen="aPick";b.h.ID=2;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=65;b.h.Class="ALL";b.h.Speed=6;b.h.Reach=0;b.h.Weapon_Power=35;b.h.STR=30;b.h.AGI=12;b.h.WIS=0;b.h.LUK=0;b.h.Defence=15;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=16;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;R.addNewEquip("EquipmentTools12",a);a=newl();b=newl();b.h.displayName="Dreadlo_Pickolo";b.h.sellPrice=200;b.h.typeGen="aPick";b.h.ID=7;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=70;b.h.Class="ALL";b.h.Speed=7;b.h.Reach=0;b.h.Weapon_Power=42;b.h.STR=35;b.h.AGI=15;b.h.WIS=0;b.h.LUK=0;b.h.Defence=25;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;R.addNewEquip("EquipmentTools9",a);a=newl();b=newl();b.h.displayName="Marbiglass|Pickaxe";b.h.sellPrice=200;b.h.typeGen="aPick";b.h.ID=6;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=80;b.h.Class="ALL";b.h.Speed=7;b.h.Reach=0;b.h.Weapon_Power=51;b.h.STR=42;b.h.AGI=20;b.h.WIS=0;b.h.LUK=0;b.h.Defence=30;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=25;b.h.UQ2txt="%_MONEY";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=6;a.h.equip=b;R.addNewEquip("EquipmentTools14",a);a=newl();b=newl();b.h.displayName="Destroyer_of_the|Mollo_Gomme";b.h.sellPrice=200;b.h.typeGen="aPick";b.h.ID=8;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="ALL";b.h.Speed=8;b.h.Reach=0;b.h.Weapon_Power=62;b.h.STR=55;b.h.AGI=25;b.h.WIS=0;b.h.LUK=0;b.h.Defence=35;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=35;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=7;a.h.equip=b;R.addNewEquip("EquipmentTools15",a);a=newl();b=newl();b.h.displayName="Prehistoric|Pickaxe";b.h.sellPrice=200;b.h.typeGen="aPick";b.h.ID=9;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=110;b.h.Class="ALL";b.h.Speed=8;b.h.Reach=0;b.h.Weapon_Power=75;b.h.STR=80;b.h.AGI=30;b.h.WIS=0;b.h.LUK=0;b.h.Defence=45;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=50;b.h.UQ2txt="%_DAMAGE_BONUS";b.h.UQ2val=2;b.h.Upgrade_Slots_Left=8;a.h.equip=b;R.addNewEquip("EquipmentTools16",a);a=newl();b=newl();b.h.displayName="Poopy_Pickaxe";b.h.sellPrice=200;b.h.typeGen="aPick";b.h.ID=1;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=2;b.h.Reach=0;b.h.Weapon_Power=18;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=6;a.h.equip=b;R.addNewEquip("EquipmentTools10",a);a=newl();b=newl();b.h.displayName="Skewered_Snek";b.h.sellPrice=200;b.h.typeGen="aPick";b.h.ID=1;b.h.Type="PICKAXE";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=10;b.h.Class="ALL";b.h.Speed=2;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=0;b.h.AGI=0;b.h.WIS=12;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CHOP_EFFICIENCY";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=6;a.h.equip=b;R.addNewEquip("EquipmentTools13",a);a=newl();b=newl();b.h.displayName="Old_Hatchet";b.h.sellPrice=50;b.h.typeGen="aHatchet";b.h.ID=0;b.h.Type="HATCHET";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=3;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=0;b.h.AGI=0;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet0",a);a=newl();b=newl();b.h.displayName="Copper_Chopper";b.h.sellPrice=650;b.h.typeGen="aHatchet";b.h.ID=2;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=3;b.h.Reach=0;b.h.Weapon_Power=7;b.h.STR=0;b.h.AGI=1;b.h.WIS=3;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet3",a);a=newl();b=newl();b.h.displayName="Iron_Hatchet";b.h.sellPrice=5e3;b.h.typeGen="aHatchet";b.h.ID=0;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=8;b.h.Class="ALL";b.h.Speed=3;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=2;b.h.AGI=0;b.h.WIS=5;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet1",a);a=newl();b=newl();b.h.displayName="Stinky_Axe";b.h.sellPrice=1e4;b.h.typeGen="aHatchet";b.h.ID=2;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=2;b.h.Reach=0;b.h.Weapon_Power=18;b.h.STR=0;b.h.AGI=0;b.h.WIS=8;b.h.LUK=4;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=6;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet2b",a);a=newl();b=newl();b.h.displayName="Golden_Axe";b.h.sellPrice=12e3;b.h.typeGen="aHatchet";b.h.ID=1;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=14;b.h.STR=0;b.h.AGI=0;b.h.WIS=8;b.h.LUK=4;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet2",a);a=newl();b=newl();b.h.displayName="Plat_Hatchet";b.h.sellPrice=200;b.h.typeGen="aHatchet";b.h.ID=3;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=20;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=18;b.h.STR=0;b.h.AGI=5;b.h.WIS=14;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet4",a);a=newl();b=newl();b.h.displayName="Dementia_Dicer";b.h.sellPrice=200;b.h.typeGen="aHatchet";b.h.ID=4;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=25;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=0;b.h.Weapon_Power=23;b.h.STR=0;b.h.AGI=6;b.h.WIS=17;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet5",a);a=newl();b=newl();b.h.displayName="Void_Imperium_Axe";b.h.sellPrice=200;b.h.typeGen="aHatchet";b.h.ID=6;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=0;b.h.Weapon_Power=26;b.h.STR=0;b.h.AGI=7;b.h.WIS=20;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet7",a);a=newl();b=newl();b.h.displayName="Lustre_Logger";b.h.sellPrice=200;b.h.typeGen="aHatchet";b.h.ID=5;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=40;b.h.Class="ALL";b.h.Speed=6;b.h.Reach=0;b.h.Weapon_Power=29;b.h.STR=0;b.h.AGI=0;b.h.WIS=24;b.h.LUK=8;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet6",a);a=newl();b=newl();b.h.displayName="Starfire_Hatchet";b.h.sellPrice=200;b.h.typeGen="aHatchet";b.h.ID=7;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="ALL";b.h.Speed=6;b.h.Reach=0;b.h.Weapon_Power=35;b.h.STR=0;b.h.AGI=9;b.h.WIS=28;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet8",a);a=newl();b=newl();b.h.displayName="Dreadlo_Hatchet";b.h.sellPrice=200;b.h.typeGen="aHatchet";b.h.ID=8;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=65;b.h.Class="ALL";b.h.Speed=7;b.h.Reach=0;b.h.Weapon_Power=40;b.h.STR=4;b.h.AGI=4;b.h.WIS=32;b.h.LUK=4;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet9",a);a=newl();b=newl();b.h.displayName="Marbiglass|Hatchet";b.h.sellPrice=200;b.h.typeGen="aHatchet";b.h.ID=5;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=75;b.h.Class="ALL";b.h.Speed=8;b.h.Reach=0;b.h.Weapon_Power=50;b.h.STR=5;b.h.AGI=5;b.h.WIS=40;b.h.LUK=5;b.h.Defence=0;b.h.UQ1txt="%_CHOP_EFFICIENCY";b.h.UQ1val=5;b.h.UQ2txt="%_MONEY";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=6;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet12",a);a=newl();b=newl();b.h.displayName="Annihilator_of|the_Yggdrasil";b.h.sellPrice=200;b.h.typeGen="aHatchet";b.h.ID=9;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=90;b.h.Class="ALL";b.h.Speed=8;b.h.Reach=0;b.h.Weapon_Power=62;b.h.STR=8;b.h.AGI=8;b.h.WIS=50;b.h.LUK=8;b.h.Defence=0;b.h.UQ1txt="%_CHOP_EFFICIENCY";b.h.UQ1val=12;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=7;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet10",a);a=newl();b=newl();b.h.displayName="Grumbie_the|Hatchet_Hammer";b.h.sellPrice=200;b.h.typeGen="aHatchet";b.h.ID=2;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=10;b.h.Class="ALL";b.h.Speed=2;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=12;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MINING_EFFICINCY";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=6;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet11",a);a=newl();b=newl();b.h.displayName="Prehistoric|Choppah";b.h.sellPrice=200;b.h.typeGen="aHatchet";b.h.ID=10;b.h.Type="HATCHET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="ALL";b.h.Speed=9;b.h.Reach=0;b.h.Weapon_Power=75;b.h.STR=0;b.h.AGI=0;b.h.WIS=100;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CHOP_EFFICIENCY";b.h.UQ1val=25;b.h.UQ2txt="%_DAMAGE_BONUS";b.h.UQ2val=2;b.h.Upgrade_Slots_Left=8;a.h.equip=b;R.addNewEquip("EquipmentToolsHatchet13",a);a=newl();b=newl();b.h.displayName="Wood_Fishing_Rod";b.h.sellPrice=200;b.h.typeGen="aFishingRod";b.h.ID=0;b.h.Type="FISHING_ROD";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=3;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=1;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("FishingRod1",a);a=newl();b=newl();b.h.displayName="Copper_Fish_Rod";b.h.sellPrice=500;b.h.typeGen="aFishingRod";b.h.ID=0;b.h.Type="FISHING_ROD";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=3;b.h.Reach=0;b.h.Weapon_Power=8;b.h.STR=2;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("FishingRod2",a);a=newl();b=newl();b.h.displayName="Iron_Fishing_Rod";b.h.sellPrice=2500;b.h.typeGen="aFishingRod";b.h.ID=1;b.h.Type="FISHING_ROD";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=9;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=13;b.h.STR=4;b.h.AGI=0;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("FishingRod3",a);a=newl();b=newl();b.h.displayName="Gold_Fishing_Rod";b.h.sellPrice=1e4;b.h.typeGen="aFishingRod";b.h.ID=2;b.h.Type="FISHING_ROD";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=19;b.h.STR=6;b.h.AGI=0;b.h.WIS=0;b.h.LUK=4;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("FishingRod4",a);a=newl();b=newl();b.h.displayName="Plat_Fishing_Rod";b.h.sellPrice=2e4;b.h.typeGen="aFishingRod";b.h.ID=3;b.h.Type="FISHING_ROD";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=25;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=0;b.h.Weapon_Power=25;b.h.STR=9;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("FishingRod5",a);a=newl();b=newl();b.h.displayName="Dementia_Rod|for_Fishing";b.h.sellPrice=2e4;b.h.typeGen="aFishingRod";b.h.ID=4;b.h.Type="FISHING_ROD";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=33;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=0;b.h.Weapon_Power=30;b.h.STR=12;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("FishingRod6",a);a=newl();b=newl();b.h.displayName="Void_Imperium_Rod";b.h.sellPrice=2e4;b.h.typeGen="aFishingRod";b.h.ID=5;b.h.Type="FISHING_ROD";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=40;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=0;b.h.Weapon_Power=36;b.h.STR=15;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("FishingRod7",a);a=newl();b=newl();b.h.displayName="Lustre_Rod";b.h.sellPrice=2e4;b.h.typeGen="aFishingRod";b.h.ID=6;b.h.Type="FISHING_ROD";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=45;b.h.Class="ALL";b.h.Speed=6;b.h.Reach=0;b.h.Weapon_Power=43;b.h.STR=20;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("FishingRod8",a);a=newl();b=newl();b.h.displayName="Starfire_Rod";b.h.sellPrice=1e4;b.h.typeGen="aFishingRod";b.h.ID=2;b.h.Type="FISHING_ROD";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="ALL";b.h.Speed=6;b.h.Reach=0;b.h.Weapon_Power=50;b.h.STR=25;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;R.addNewEquip("FishingRod9",a);a=newl();b=newl();b.h.displayName="Dreadlo_Rod";b.h.sellPrice=1e4;b.h.typeGen="aFishingRod";b.h.ID=1;b.h.Type="FISHING_ROD";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=60;b.h.Class="ALL";b.h.Speed=7;b.h.Reach=0;b.h.Weapon_Power=60;b.h.STR=35;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;R.addNewEquip("FishingRod10",a);a=newl();b=newl();b.h.displayName="Marbiglass_Rod";b.h.sellPrice=1e4;b.h.typeGen="aFishingRod";b.h.ID=6;b.h.Type="FISHING_ROD";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=75;b.h.Class="ALL";b.h.Speed=7;b.h.Reach=0;b.h.Weapon_Power=72;b.h.STR=50;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_FISHIN_EFFICINCY";b.h.UQ1val=5;b.h.UQ2txt="%_MONEY";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=6;a.h.equip=b;R.addNewEquip("FishingRod11",a);a=newl();b=newl();b.h.displayName="Angler_of_the|Iliunne";b.h.sellPrice=1e4;b.h.typeGen="aFishingRod";b.h.ID=7;b.h.Type="FISHING_ROD";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=90;b.h.Class="ALL";b.h.Speed=8;b.h.Reach=0;b.h.Weapon_Power=85;b.h.STR=75;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_FISHIN_EFFICINCY";b.h.UQ1val=12;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=7;a.h.equip=b;R.addNewEquip("FishingRod12",a);a=newl();b=newl();b.h.displayName="Prehistoric|Rod";b.h.sellPrice=1e4;b.h.typeGen="aFishingRod";b.h.ID=8;b.h.Type="FISHING_ROD";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="ALL";b.h.Speed=8;b.h.Reach=0;b.h.Weapon_Power=110;b.h.STR=100;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_FISHIN_EFFICINCY";b.h.UQ1val=25;b.h.UQ2txt="%_DAMAGE_BONUS";b.h.UQ2val=2;b.h.Upgrade_Slots_Left=8;a.h.equip=b;R.addNewEquip("FishingRod13",a);a=newl();b=newl();b.h.displayName="Bug_Net";b.h.sellPrice=100;b.h.typeGen="aBugNet";b.h.ID=0;b.h.Type="BUG_CATCHING_NET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=0;b.h.AGI=2;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("CatchingNet1",a);a=newl();b=newl();b.h.displayName="Copper_Netted_Net";b.h.sellPrice=2e3;b.h.typeGen="aBugNet";b.h.ID=1;b.h.Type="BUG_CATCHING_NET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=9;b.h.STR=1;b.h.AGI=3;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("CatchingNet2",a);a=newl();b=newl();b.h.displayName="Reinforced_Net";b.h.sellPrice=7500;b.h.typeGen="aBugNet";b.h.ID=0;b.h.Type="BUG_CATCHING_NET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=10;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=14;b.h.STR=2;b.h.AGI=4;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("CatchingNet3",a);a=newl();b=newl();b.h.displayName="Golden_Net";b.h.sellPrice=17e3;b.h.typeGen="aBugNet";b.h.ID=2;b.h.Type="BUG_CATCHING_NET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=0;b.h.Weapon_Power=20;b.h.STR=2;b.h.AGI=6;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("CatchingNet4",a);a=newl();b=newl();b.h.displayName="Platinet";b.h.sellPrice=17e3;b.h.typeGen="aBugNet";b.h.ID=3;b.h.Type="BUG_CATCHING_NET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=20;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=0;b.h.Weapon_Power=26;b.h.STR=3;b.h.AGI=7;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("CatchingNet5",a);a=newl();b=newl();b.h.displayName="Dementia_Net";b.h.sellPrice=17e3;b.h.typeGen="aBugNet";b.h.ID=5;b.h.Type="BUG_CATCHING_NET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=25;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=0;b.h.Weapon_Power=31;b.h.STR=4;b.h.AGI=9;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("CatchingNet6",a);a=newl();b=newl();b.h.displayName="Void_Imperium_Net";b.h.sellPrice=17e3;b.h.typeGen="aBugNet";b.h.ID=4;b.h.Type="BUG_CATCHING_NET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=0;b.h.Weapon_Power=37;b.h.STR=6;b.h.AGI=12;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("CatchingNet7",a);a=newl();b=newl();b.h.displayName="Lustre_Netting";b.h.sellPrice=17e3;b.h.typeGen="aBugNet";b.h.ID=6;b.h.Type="BUG_CATCHING_NET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=40;b.h.Class="ALL";b.h.Speed=6;b.h.Reach=0;b.h.Weapon_Power=45;b.h.STR=8;b.h.AGI=15;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("CatchingNet8",a);a=newl();b=newl();b.h.displayName="Starfire_Trim|Netting";b.h.sellPrice=17e3;b.h.typeGen="aBugNet";b.h.ID=2;b.h.Type="BUG_CATCHING_NET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="ALL";b.h.Speed=6;b.h.Reach=0;b.h.Weapon_Power=55;b.h.STR=10;b.h.AGI=20;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;R.addNewEquip("CatchingNet9",a);a=newl();b=newl();b.h.displayName="Dreadlo_Matted|Netting";b.h.sellPrice=17e3;b.h.typeGen="aBugNet";b.h.ID=1;b.h.Type="BUG_CATCHING_NET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=65;b.h.Class="ALL";b.h.Speed=7;b.h.Reach=0;b.h.Weapon_Power=65;b.h.STR=13;b.h.AGI=25;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;R.addNewEquip("CatchingNet10",a);a=newl();b=newl();b.h.displayName="Marbiglass|Netting";b.h.sellPrice=17e3;b.h.typeGen="aBugNet";b.h.ID=6;b.h.Type="BUG_CATCHING_NET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=80;b.h.Class="ALL";b.h.Speed=7;b.h.Reach=0;b.h.Weapon_Power=78;b.h.STR=15;b.h.AGI=32;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CATCH_EFFICINCY";b.h.UQ1val=5;b.h.UQ2txt="%_MONEY";b.h.UQ2val=15;b.h.Upgrade_Slots_Left=6;a.h.equip=b;R.addNewEquip("CatchingNet11",a);a=newl();b=newl();b.h.displayName="Wrangler_of_the|Qoxzul";b.h.sellPrice=17e3;b.h.typeGen="aBugNet";b.h.ID=7;b.h.Type="BUG_CATCHING_NET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=95;b.h.Class="ALL";b.h.Speed=8;b.h.Reach=0;b.h.Weapon_Power=92;b.h.STR=20;b.h.AGI=45;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CATCH_EFFICINCY";b.h.UQ1val=12;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=7;a.h.equip=b;R.addNewEquip("CatchingNet12",a);a=newl();b=newl();b.h.displayName="Prehistoric|Netting";b.h.sellPrice=17e3;b.h.typeGen="aBugNet";b.h.ID=8;b.h.Type="BUG_CATCHING_NET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=105;b.h.Class="ALL";b.h.Speed=8;b.h.Reach=0;b.h.Weapon_Power=110;b.h.STR=25;b.h.AGI=70;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CATCH_EFFICINCY";b.h.UQ1val=25;b.h.UQ2txt="%_DAMAGE_BONUS";b.h.UQ2val=2;b.h.Upgrade_Slots_Left=8;a.h.equip=b;R.addNewEquip("CatchingNet13",a);a=newl();b=newl();b.h.displayName="Cardboard_Traps";b.h.sellPrice=5e3;b.h.typeGen="aTrap";b.h.ID=1;b.h.Type="TRAP_BOX_SET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=0;b.h.AGI=2;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;R.addNewEquip("TrapBoxSet1",a);a=newl();b=newl();b.h.displayName="Silkskin_Traps";b.h.sellPrice=1;b.h.typeGen="aTrap";b.h.ID=2;b.h.Type="TRAP_BOX_SET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=5;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=8;b.h.STR=0;b.h.AGI=4;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;R.addNewEquip("TrapBoxSet2",a);a=newl();b=newl();b.h.displayName="Wooden_Traps";b.h.sellPrice=2;b.h.typeGen="aTrap";b.h.ID=3;b.h.Type="TRAP_BOX_SET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=15;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=13;b.h.STR=0;b.h.AGI=7;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("TrapBoxSet3",a);a=newl();b=newl();b.h.displayName="Natural_Traps";b.h.sellPrice=3;b.h.typeGen="aTrap";b.h.ID=4;b.h.Type="TRAP_BOX_SET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=20;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=20;b.h.STR=0;b.h.AGI=10;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("TrapBoxSet4",a);a=newl();b=newl();b.h.displayName="Steel_Traps";b.h.sellPrice=4;b.h.typeGen="aTrap";b.h.ID=5;b.h.Type="TRAP_BOX_SET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=26;b.h.STR=0;b.h.AGI=12;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("TrapBoxSet5",a);a=newl();b=newl();b.h.displayName="Meaty_Traps";b.h.sellPrice=5;b.h.typeGen="aTrap";b.h.ID=6;b.h.Type="TRAP_BOX_SET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=40;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=34;b.h.STR=0;b.h.AGI=15;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("TrapBoxSet6",a);a=newl();b=newl();b.h.displayName="Royal_Traps";b.h.sellPrice=6;b.h.typeGen="aTrap";b.h.ID=7;b.h.Type="TRAP_BOX_SET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=48;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=45;b.h.STR=0;b.h.AGI=20;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("TrapBoxSet7",a);a=newl();b=newl();b.h.displayName="Egalitarian_Traps";b.h.sellPrice=6;b.h.typeGen="aTrap";b.h.ID=7;b.h.Type="TRAP_BOX_SET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=55;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=55;b.h.STR=0;b.h.AGI=38;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("TrapBoxSet8",a);a=newl();b=newl();b.h.displayName="Forbidden_Traps";b.h.sellPrice=6;b.h.typeGen="aTrap";b.h.ID=7;b.h.Type="TRAP_BOX_SET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=70;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=67;b.h.STR=0;b.h.AGI=56;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MONEY";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;R.addNewEquip("TrapBoxSet9",a);a=newl();b=newl();b.h.displayName="Containment_of|the_Zrgyios";b.h.sellPrice=6;b.h.typeGen="aTrap";b.h.ID=7;b.h.Type="TRAP_BOX_SET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=85;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=80;b.h.STR=0;b.h.AGI=80;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=4;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=6;a.h.equip=b;R.addNewEquip("TrapBoxSet10",a);a=newl();b=newl();b.h.displayName="Prehistoric|Traps";b.h.sellPrice=6;b.h.typeGen="aTrap";b.h.ID=7;b.h.Type="TRAP_BOX_SET";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=100;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=110;b.h.STR=0;b.h.AGI=100;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=6;b.h.UQ2txt="%_DAMAGE_BONUS";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=7;a.h.equip=b;R.addNewEquip("TrapBoxSet11",a);a=newl();b=newl();b.h.displayName="Wax_Skull";b.h.sellPrice=5e3;b.h.typeGen="aSkull";b.h.ID=0;b.h.Type="WORSHIP_SKULL";b.h.lvReqToCraft="100";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=4;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=0;b.h.AGI=0;b.h.WIS=2;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;R.addNewEquip("WorshipSkull1",a);a=newl();b=newl();b.h.displayName="Ceramic_Skull";b.h.sellPrice=100;b.h.typeGen="aSkull";b.h.ID=0;b.h.Type="WORSHIP_SKULL";b.h.lvReqToCraft="200";a.h.common=b;b=newl();b.h.lvReqToEquip=10;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=0;b.h.Weapon_Power=8;b.h.STR=0;b.h.AGI=0;b.h.WIS=4;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;R.addNewEquip("WorshipSkull2",a);a=newl();b=newl();b.h.displayName="Horned_Skull";b.h.sellPrice=100;b.h.typeGen="aSkull";b.h.ID=0;b.h.Type="WORSHIP_SKULL";b.h.lvReqToCraft="400";a.h.common=b;b=newl();b.h.lvReqToEquip=25;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=0;b.h.Weapon_Power=13;b.h.STR=0;b.h.AGI=0;b.h.WIS=7;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("WorshipSkull3",a);a=newl();b=newl();b.h.displayName="Prickle_Skull";b.h.sellPrice=100;b.h.typeGen="aSkull";b.h.ID=0;b.h.Type="WORSHIP_SKULL";b.h.lvReqToCraft="750";a.h.common=b;b=newl();b.h.lvReqToEquip=35;b.h.Class="ALL";b.h.Speed=6;b.h.Reach=0;b.h.Weapon_Power=20;b.h.STR=0;b.h.AGI=0;b.h.WIS=10;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=2;a.h.equip=b;R.addNewEquip("WorshipSkull4",a);a=newl();b=newl();b.h.displayName="Manifested_Skull";b.h.sellPrice=100;b.h.typeGen="aSkull";b.h.ID=0;b.h.Type="WORSHIP_SKULL";b.h.lvReqToCraft="1250";a.h.common=b;b=newl();b.h.lvReqToEquip=40;b.h.Class="ALL";b.h.Speed=7;b.h.Reach=0;b.h.Weapon_Power=26;b.h.STR=0;b.h.AGI=0;b.h.WIS=12;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("WorshipSkull5",a);a=newl();b=newl();b.h.displayName="Glauss_Skull";b.h.sellPrice=100;b.h.typeGen="aSkull";b.h.ID=0;b.h.Type="WORSHIP_SKULL";b.h.lvReqToCraft="1750";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="ALL";b.h.Speed=7;b.h.Reach=0;b.h.Weapon_Power=34;b.h.STR=0;b.h.AGI=0;b.h.WIS=15;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("WorshipSkull6",a);a=newl();b=newl();b.h.displayName="Luciferian_Skull";b.h.sellPrice=100;b.h.typeGen="aSkull";b.h.ID=0;b.h.Type="WORSHIP_SKULL";b.h.lvReqToCraft="2500";a.h.common=b;b=newl();b.h.lvReqToEquip=60;b.h.Class="ALL";b.h.Speed=8;b.h.Reach=0;b.h.Weapon_Power=45;b.h.STR=0;b.h.AGI=0;b.h.WIS=20;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("WorshipSkull7",a);a=newl();b=newl();b.h.displayName="Slush_Skull";b.h.sellPrice=100;b.h.typeGen="aSkull";b.h.ID=0;b.h.Type="WORSHIP_SKULL";b.h.lvReqToCraft="1000";a.h.common=b;b=newl();b.h.lvReqToEquip=10;b.h.Class="ALL";b.h.Speed=2;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=25;b.h.UQ1txt="_BASE_DAMAGE";b.h.UQ1val=250;b.h.UQ2txt="%_ALL_STATS";b.h.UQ2val=2;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("WorshipSkull8",a);a=newl();b=newl();b.h.displayName="Dreadnaught_Skull";b.h.sellPrice=100;b.h.typeGen="aSkull";b.h.ID=0;b.h.Type="WORSHIP_SKULL";b.h.lvReqToCraft="3000";a.h.common=b;b=newl();b.h.lvReqToEquip=70;b.h.Class="ALL";b.h.Speed=9;b.h.Reach=0;b.h.Weapon_Power=55;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=3;b.h.UQ2txt="%_ALL_STATS";b.h.UQ2val=3;b.h.Upgrade_Slots_Left=5;a.h.equip=b;R.addNewEquip("WorshipSkull9",a);a=newl();b=newl();b.h.displayName="Cultist_Skull";b.h.sellPrice=100;b.h.typeGen="aSkull";b.h.ID=0;b.h.Type="WORSHIP_SKULL";b.h.lvReqToCraft="3600";a.h.common=b;b=newl();b.h.lvReqToEquip=90;b.h.Class="ALL";b.h.Speed=9;b.h.Reach=0;b.h.Weapon_Power=63;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MONEY";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;R.addNewEquip("WorshipSkull10",a);a=newl();b=newl();b.h.displayName="Crystal_Skull_of|Esquire_Vnoze";b.h.sellPrice=100;b.h.typeGen="aSkull";b.h.ID=0;b.h.Type="WORSHIP_SKULL";b.h.lvReqToCraft="4200";a.h.common=b;b=newl();b.h.lvReqToEquip=120;b.h.Class="ALL";b.h.Speed=10;b.h.Reach=0;b.h.Weapon_Power=70;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=4;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=6;a.h.equip=b;R.addNewEquip("WorshipSkull11",a);a=newl();b=newl();b.h.displayName="Prehistoric|Skull";b.h.sellPrice=100;b.h.typeGen="aSkull";b.h.ID=0;b.h.Type="WORSHIP_SKULL";b.h.lvReqToCraft="6000";a.h.common=b;b=newl();b.h.lvReqToEquip=150;b.h.Class="ALL";b.h.Speed=10;b.h.Reach=0;b.h.Weapon_Power=90;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=6;b.h.UQ2txt="%_DAMAGE_BONUS";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=7;a.h.equip=b;R.addNewEquip("WorshipSkull12",a);a=newl();b=newl();b.h.displayName="Sappy_DNA_Splicer";b.h.sellPrice=6e6;b.h.typeGen="aDNAgun";b.h.ID=1;b.h.Type="DNA_SPLICER";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=40;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=50;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=10;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("DNAgun0",a);a=newl();b=newl();b.h.displayName="Bolstered_DNA|Splicer";b.h.sellPrice=1e4;b.h.typeGen="aDNAgun";b.h.ID=2;b.h.Type="DNA_SPLICER";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=90;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=70;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=15;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;R.addNewEquip("DNAgun1",a);a=newl();b=newl();b.h.displayName="Double_Barreled|DNA_Splicer";b.h.sellPrice=1e4;b.h.typeGen="aDNAgun";b.h.ID=3;b.h.Type="DNA_SPLICER";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=140;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=100;b.h.STR=15;b.h.AGI=15;b.h.WIS=15;b.h.LUK=15;b.h.Defence=23;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("DNAgun2",a);a=newl();b=newl();b.h.displayName="Ergonomic_DNA|Splicer";b.h.sellPrice=1e4;b.h.typeGen="aDNAgun";b.h.ID=4;b.h.Type="DNA_SPLICER";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.lvReqToEquip=180;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=150;b.h.STR=20;b.h.AGI=20;b.h.WIS=20;b.h.LUK=20;b.h.Defence=35;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=4;a.h.equip=b;R.addNewEquip("DNAgun3",a);a=newl();b=newl();b.h.displayName="Nomwich";b.h.sellPrice=2;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=20;b.h.Trigger=50;b.h.Cooldown=30;a.h.consumable=b;R.addNewConsumable("FoodHealth1",a);a=newl();b=newl();b.h.displayName="Hot_Dog";b.h.sellPrice=7;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=50;b.h.Trigger=50;b.h.Cooldown=30;a.h.consumable=b;R.addNewConsumable("FoodHealth3",a);a=newl();b=newl();b.h.displayName="Cheezy_Pizza";b.h.sellPrice=20;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=125;b.h.Trigger=50;b.h.Cooldown=30;a.h.consumable=b;R.addNewConsumable("FoodHealth2",a);a=newl();b=newl();b.h.displayName="Peanut";b.h.sellPrice=12;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_75%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="The_favorite_snack_of_all_bloblytes!";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=80;b.h.Trigger=75;b.h.Cooldown=20;a.h.consumable=b;R.addNewConsumable("Peanut",a);a=newl();b=newl();b.h.displayName="Saucy_Weiner";b.h.sellPrice=120;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=700;b.h.Trigger=50;b.h.Cooldown=30;a.h.consumable=b;R.addNewConsumable("FoodHealth4",a);a=newl();b=newl();b.h.displayName="Kebab_Sticks";b.h.sellPrice=48;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=300;b.h.Trigger=50;b.h.Cooldown=30;a.h.consumable=b;R.addNewConsumable("FoodHealth6",a);a=newl();b=newl();b.h.displayName="Meat_Pie";b.h.sellPrice=80;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=500;b.h.Trigger=50;b.h.Cooldown=30;a.h.consumable=b;R.addNewConsumable("FoodHealth7",a);a=newl();b=newl();b.h.displayName="Mountain_Bread";b.h.sellPrice=140;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=750;b.h.Trigger=50;b.h.Cooldown=30;a.h.consumable=b;R.addNewConsumable("FoodHealth10",a);a=newl();b=newl();b.h.displayName="Yeti_Ham";b.h.sellPrice=190;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_60%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=1e3;b.h.Trigger=60;b.h.Cooldown=30;a.h.consumable=b;R.addNewConsumable("FoodHealth9",a);a=newl();b=newl();b.h.displayName="Sheepie_Dairy";b.h.sellPrice=310;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=1500;b.h.Trigger=50;b.h.Cooldown=30;a.h.consumable=b;R.addNewConsumable("FoodHealth11",a);a=newl();b=newl();b.h.displayName="Cupcake";b.h.sellPrice=1500;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_70%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=3e3;b.h.Trigger=70;b.h.Cooldown=30;a.h.consumable=b;R.addNewConsumable("FoodHealth13",a);a=newl();b=newl();b.h.displayName="Spicy_Space_Ribs";b.h.sellPrice=4e3;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=6e3;b.h.Trigger=50;b.h.Cooldown=25;a.h.consumable=b;R.addNewConsumable("FoodHealth12",a);a=newl();b=newl();b.h.displayName="Lemon_Slice";b.h.sellPrice=8e3;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=8e3;b.h.Trigger=60;b.h.Cooldown=22;a.h.consumable=b;R.addNewConsumable("FoodHealth14",a);a=newl();b=newl();b.h.displayName="Grilled_Cheese|Nomwich";b.h.sellPrice=16e3;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=12500;b.h.Trigger=70;b.h.Cooldown=20;a.h.consumable=b;R.addNewConsumable("FoodHealth15",a);a=newl();b=newl();b.h.displayName="Raw_Nigiri";b.h.sellPrice=7e4;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=2e4;b.h.Trigger=70;b.h.Cooldown=20;a.h.consumable=b;R.addNewConsumable("FoodHealth16",a);a=newl();b=newl();b.h.displayName="Dumpling";b.h.sellPrice=5e5;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=4e4;b.h.Trigger=70;b.h.Cooldown=20;a.h.consumable=b;R.addNewConsumable("FoodHealth17",a);a=newl();b=newl();b.h.displayName="Saltwater_Taffy";b.h.sellPrice=6e25;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=6e4;b.h.Trigger=70;b.h.Cooldown=20;a.h.consumable=b;R.addNewConsumable("FoodHealth18",a);a=newl();b=newl();b.h.displayName="Sugar_Cookie";b.h.sellPrice=3e28;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=8e4;b.h.Trigger=70;b.h.Cooldown=20;a.h.consumable=b;R.addNewConsumable("FoodHealth19",a);a=newl();b=newl();b.h.displayName="Cranberry_Jam";b.h.sellPrice=32;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=200;b.h.Trigger=50;b.h.Cooldown=30;a.h.consumable=b;R.addNewConsumable("FoodHealth5",a);a=newl();b=newl();b.h.displayName="Crabby_Cake|Supreme";b.h.sellPrice=120;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_35%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=700;b.h.Trigger=35;b.h.Cooldown=60;a.h.consumable=b;R.addNewConsumable("FoodHealth8",a);a=newl();b=newl();b.h.displayName="Milk_Choco";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_80%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=1e3;b.h.Trigger=80;b.h.Cooldown=12;a.h.consumable=b;R.addNewConsumable("FoodEvent8",a);a=newl();b=newl();b.h.displayName="Magic_Meatloaf";b.h.sellPrice=300;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="HEALTH_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_30%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=2e3;b.h.Trigger=30;b.h.Cooldown=10;a.h.consumable=b;R.addNewConsumable("Meatloaf",a);a=newl();b=newl();b.h.displayName="Small_Strength|Potion";b.h.sellPrice=5;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Base_Dmg_by_[.";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="BaseDmgBoosts";b.h.Amount=50;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotOr1",a);a=newl();b=newl();b.h.displayName="Average_Strength|Potion";b.h.sellPrice=25;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Base_Dmg_by_[.";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="BaseDmgBoosts";b.h.Amount=150;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotOr2",a);a=newl();b=newl();b.h.displayName="Decent_Strength|Potion";b.h.sellPrice=150;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Base_Dmg_by_[.";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="BaseDmgBoosts";b.h.Amount=400;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotOr3",a);a=newl();b=newl();b.h.displayName="Potent_Strength|Potion";b.h.sellPrice=2700;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Base_Dmg_by_[.";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="BaseDmgBoosts";b.h.Amount=1e3;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotOr4",a);a=newl();b=newl();b.h.displayName="Small_Life|Potion";b.h.sellPrice=4;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Base_HP_by_[.";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="HpBaseBoosts";b.h.Amount=75;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotRe1",a);a=newl();b=newl();b.h.displayName="Average_Life|Potion";b.h.sellPrice=30;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Base_HP_by_[.";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="HpBaseBoosts";b.h.Amount=200;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotRe2",a);a=newl();b=newl();b.h.displayName="Decent_Life|Potion";b.h.sellPrice=200;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Base_HP_by_[.";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="HpBaseBoosts";b.h.Amount=400;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotRe3",a);a=newl();b=newl();b.h.displayName="Potent_Life|Potion";b.h.sellPrice=4e3;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Base_HP_by_[.";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="HpBaseBoosts";b.h.Amount=800;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotRe4",a);a=newl();b=newl();b.h.displayName="Small_Speed|Potion";b.h.sellPrice=7;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Move_Spd_by_[%.";b.h.desc_line2="]%_chance_to_be_consumed";b.h.desc_line3="every_10_meters_walked.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="MoveSpdBoosts";b.h.Amount=10;b.h.Trigger=-2;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotGr1",a);a=newl();b=newl();b.h.displayName="Average_Speed|Potion";b.h.sellPrice=60;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Move_Spd_by_[%.";b.h.desc_line2="]%_chance_to_be_consumed";b.h.desc_line3="every_10_meters_walked.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="MoveSpdBoosts";b.h.Amount=15;b.h.Trigger=-2;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotGr2",a);a=newl();b=newl();b.h.displayName="Decent_Speed|Potion";b.h.sellPrice=400;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Move_Spd_by_[%.";b.h.desc_line2="]%_chance_to_be_consumed";b.h.desc_line3="every_10_meters_walked.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="MoveSpdBoosts";b.h.Amount=17;b.h.Trigger=-2;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotGr3",a);a=newl();b=newl();b.h.displayName="Potent_Speed|Potion";b.h.sellPrice=8e3;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Move_Spd_by_[%.";b.h.desc_line2="]%_chance_to_be_consumed";b.h.desc_line3="every_10_meters_walked.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="MoveSpdBoosts";b.h.Amount=20;b.h.Trigger=-2;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotGr4",a);a=newl();b=newl();b.h.displayName="Minto_Choco";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Move_Spd_by_[%.";b.h.desc_line2="]%_chance_to_be_consumed";b.h.desc_line3="every_10_meters_walked.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="MoveSpdBoosts";b.h.Amount=8;b.h.Trigger=-2;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodEvent7",a);a=newl();b=newl();b.h.displayName="Small_Mana|Potion";b.h.sellPrice=5;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Boosts_Mana_Regen_Rate_by_[%";b.h.desc_line2="]%_chance_to_be_consumed";b.h.desc_line3="every_100%_Mana_Regenerated.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ManaRegenBoosts";b.h.Amount=20;b.h.Trigger=-3;b.h.Cooldown=2;a.h.consumable=b;R.addNewConsumable("FoodPotMana1",a);a=newl();b=newl();b.h.displayName="Average_Mana|Potion";b.h.sellPrice=25;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Boosts_Mana_Regen_Rate_by_[%";b.h.desc_line2="]%_chance_to_be_consumed";b.h.desc_line3="every_100%_Mana_Regenerated.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ManaRegenBoosts";b.h.Amount=30;b.h.Trigger=-3;b.h.Cooldown=2;a.h.consumable=b;R.addNewConsumable("FoodPotMana2",a);a=newl();b=newl();b.h.displayName="Decent_Mana|Potion";b.h.sellPrice=175;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Boosts_Mana_Regen_Rate_by_[%";b.h.desc_line2="]%_chance_to_be_consumed";b.h.desc_line3="every_100%_Mana_Regenerated.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ManaRegenBoosts";b.h.Amount=40;b.h.Trigger=-3;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotMana3",a);a=newl();b=newl();b.h.displayName="Potent_Mana|Potion";b.h.sellPrice=4500;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Boosts_Mana_Regen_Rate_by_[%";b.h.desc_line2="]%_chance_to_be_consumed";b.h.desc_line3="every_100%_Mana_Regenerated.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ManaRegenBoosts";b.h.Amount=50;b.h.Trigger=-3;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotMana4",a);a=newl();b=newl();b.h.displayName="Small_EXP|Potion";b.h.sellPrice=25;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Exp_Gain_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ClassEXP";b.h.Amount=30;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotYe1",a);a=newl();b=newl();b.h.displayName="Average_EXP|Potion";b.h.sellPrice=250;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Exp_Gain_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ClassEXP";b.h.Amount=45;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotYe2",a);a=newl();b=newl();b.h.displayName="Decent_EXP|Potion";b.h.sellPrice=1500;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Exp_Gain_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ClassEXP";b.h.Amount=60;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotYe3",a);a=newl();b=newl();b.h.displayName="Potent_EXP|Potion";b.h.sellPrice=3e4;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Exp_Gain_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ClassEXP";b.h.Amount=75;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotYe4",a);a=newl();b=newl();b.h.displayName="Quotient_EXP|Potion";b.h.sellPrice=15e4;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Exp_Gain_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ClassEXP";b.h.Amount=90;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodPotYe5",a);a=newl();b=newl();b.h.displayName="Lemony_Choco";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Exp_Gain_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ClassEXP";b.h.Amount=30;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodEvent6",a);a=newl();b=newl();b.h.displayName="Shiny_Pearl";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Exp_Gain_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ClassEXP";b.h.Amount=25;b.h.Trigger=-1;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("Pearl3",a);a=newl();b=newl();b.h.displayName="Icing_Ironbite";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Mining_Speed_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_swing_your_pickaxe.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="MiningSpeedBoosts";b.h.Amount=15;b.h.Trigger=-4;b.h.Cooldown=10;a.h.consumable=b;R.addNewConsumable("FoodMining1",a);a=newl();b=newl();b.h.displayName="Giftybread_Man";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Mining_Speed_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_swing_your_pickaxe.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="MiningSpeedBoosts";b.h.Amount=25;b.h.Trigger=-4;b.h.Cooldown=3;a.h.consumable=b;R.addNewConsumable("FoodEvent1",a);a=newl();b=newl();b.h.displayName="Stained_Pearl";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Mining_Speed_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_swing_your_pickaxe.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="MiningSpeedBoosts";b.h.Amount=30;b.h.Trigger=-4;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("Pearl2",a);a=newl();b=newl();b.h.displayName="Saucy_Logfries";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Choppin'_Speed_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_swing_your_hatchet.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ChoppinSpeedBoosts";b.h.Amount=15;b.h.Trigger=-6;b.h.Cooldown=10;a.h.consumable=b;R.addNewConsumable("FoodChoppin1",a);a=newl();b=newl();b.h.displayName="Chogg_Nog";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Choppin'_Speed_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_swing_your_hatchet.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ChoppinSpeedBoosts";b.h.Amount=25;b.h.Trigger=-6;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodEvent2",a);a=newl();b=newl();b.h.displayName="Slurpin_Herm";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Fishing_Spd_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_reel_in_a_fish.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="FishingSpeedBoosts";b.h.Amount=20;b.h.Trigger=-7;b.h.Cooldown=10;a.h.consumable=b;R.addNewConsumable("FoodFish1",a);a=newl();b=newl();b.h.displayName="Candy_Canes";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Fishing_Spd_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_reel_in_a_fish.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="FishingSpeedBoosts";b.h.Amount=25;b.h.Trigger=-7;b.h.Cooldown=3;a.h.consumable=b;R.addNewConsumable("FoodEvent3",a);a=newl();b=newl();b.h.displayName="Aqua_Pearl";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Fishing_Spd_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_reel_in_a_fish.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="FishingSpeedBoosts";b.h.Amount=30;b.h.Trigger=-7;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("Pearl1",a);a=newl();b=newl();b.h.displayName="Buttered_Toasted|Butter";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Catching_Spd_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_swing_your_net.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="CatchingSpeedBoosts";b.h.Amount=20;b.h.Trigger=-8;b.h.Cooldown=10;a.h.consumable=b;R.addNewConsumable("FoodCatch1",a);a=newl();b=newl();b.h.displayName="Mistleberries";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Catching_Spd_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_swing_your_net.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="CatchingSpeedBoosts";b.h.Amount=25;b.h.Trigger=-8;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodEvent4",a);a=newl();b=newl();b.h.displayName="Critter_Numnums";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Shiny_Odds_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_open_a_trap.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="TrappingSpeedBoosts";b.h.Amount=25;b.h.Trigger=-9;b.h.Cooldown=125;a.h.consumable=b;R.addNewConsumable("FoodTrapping1",a);a=newl();b=newl();b.h.displayName="Soulble_Gum";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Soul_Gain_by_[%";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_Worship.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="WorshipSoulBoosts";b.h.Amount=25;b.h.Trigger=-10;b.h.Cooldown=125;a.h.consumable=b;R.addNewConsumable("FoodWorship1",a);a=newl();b=newl();b.h.displayName="Bullet";b.h.sellPrice=20;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Weapon_Power_by_[.";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="WeaponPowerBoosts";b.h.Amount=1;b.h.Trigger=-1;b.h.Cooldown=15;a.h.consumable=b;R.addNewConsumable("Bullet",a);a=newl();b=newl();b.h.displayName="FMJ_Bullet";b.h.sellPrice=20;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Weapon_Power_by_[.";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="WeaponPowerBoosts";b.h.Amount=2;b.h.Trigger=-1;b.h.Cooldown=12;a.h.consumable=b;R.addNewConsumable("BulletB",a);a=newl();b=newl();b.h.displayName="Coldseeker_Bullet";b.h.sellPrice=20;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Weapon_Power_by_[.";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="WeaponPowerBoosts";b.h.Amount=9;b.h.Trigger=-1;b.h.Cooldown=5;a.h.consumable=b;R.addNewConsumable("Bullet3",a);a=newl();b=newl();b.h.displayName="Midnight_Cookie";b.h.sellPrice=300;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Weapon_Power_by_[.";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="WeaponPowerBoosts";b.h.Amount=5;b.h.Trigger=-1;b.h.Cooldown=2;a.h.consumable=b;R.addNewConsumable("MidnightCookie",a);a=newl();b=newl();b.h.displayName="Cherry_Choco";b.h.sellPrice=10;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="BOOST_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Weapon_Power_by_[.";b.h.desc_line2="]%_chance_to_be_consumed_every";b.h.desc_line3="time_you_defeat_a_monster.";b.h.desc_line4="Must_be_equipped_in_a_Food_Slot_to";b.h.desc_line5="give_its_bonus.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="WeaponPowerBoosts";b.h.Amount=5;b.h.Trigger=-1;b.h.Cooldown=10;a.h.consumable=b;R.addNewConsumable("FoodEvent5",a);a=newl();b=newl();b.h.displayName="Golden_Peanut";b.h.sellPrice=125;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Mining_Efficiency";b.h.desc_line2="by_[%.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="MiningEff";b.h.Amount=30;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("PeanutG",a);a=newl();b=newl();b.h.displayName="Golden_Jam";b.h.sellPrice=50;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_your_Max_Health_by";b.h.desc_line2="[%.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="MaxHPpct";b.h.Amount=30;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG1",a);a=newl();b=newl();b.h.displayName="Golden_Kebabs";b.h.sellPrice=200;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Total_Damage_to";b.h.desc_line2="all_monsters_by_[%.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Damage";b.h.Amount=20;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG2",a);a=newl();b=newl();b.h.displayName="Golden_Meat_Pie";b.h.sellPrice=350;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_your_Total_Defence";b.h.desc_line2="by_[%.";b.h.desc_line3="Golden_foods_are_never_consumed";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Defence";b.h.Amount=30;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG3",a);a=newl();b=newl();b.h.displayName="Golden_Nomwich";b.h.sellPrice=100;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Base_Damage_Dealt_to";b.h.desc_line2="all_monsters_by_[.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="BaseDamage";b.h.Amount=400;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG4",a);a=newl();b=newl();b.h.displayName="Golden_Ham";b.h.sellPrice=100;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Skill_EXP_earned";b.h.desc_line2="from_all_skills_by_[%.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="SkillExp";b.h.Amount=18;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG5",a);a=newl();b=newl();b.h.displayName="Golden_Bread";b.h.sellPrice=100;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Boosts_coins_dropped_by_mobs";b.h.desc_line2="by_[%.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="MonsterCash";b.h.Amount=30;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG6",a);a=newl();b=newl();b.h.displayName="Golden_Ribs";b.h.sellPrice=100;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Fishing_Efficiency";b.h.desc_line2="by_[%.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="FishingEff";b.h.Amount=40;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG7",a);a=newl();b=newl();b.h.displayName="Golden_Cheese";b.h.sellPrice=100;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Claiming_AFK_gains_levels";b.h.desc_line2="up_shrines_[%_faster.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ShrineEffect";b.h.Amount=20;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG8",a);a=newl();b=newl();b.h.displayName="Golden_Grilled|Cheese_Nomwich";b.h.sellPrice=100;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="STR_AGI_WIS_and_LUK_all";b.h.desc_line2="increased_by_[%.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="AllStatz";b.h.Amount=10;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG9",a);a=newl();b=newl();b.h.displayName="Golden_Hampter|Gummy_Candy";b.h.sellPrice=100;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Claiming_AFK_gives_Sailing";b.h.desc_line2="AFK_time_[%_chance.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="SailAFKz";b.h.Amount=23;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG10",a);a=newl();b=newl();b.h.displayName="Golden_Nigiri";b.h.sellPrice=100;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Class_EXP_gain";b.h.desc_line2="by_[%.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="ClassEXPz";b.h.Amount=40;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG11",a);a=newl();b=newl();b.h.displayName="Golden_Dumpling";b.h.sellPrice=100;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_all_AFK_Gains_rate";b.h.desc_line2="by_[%.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="AllAFK";b.h.Amount=4;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG12",a);a=newl();b=newl();b.h.displayName="Golden_Cake";b.h.sellPrice=100;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Drop_Rate";b.h.desc_line2="by_[%.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="DropRatez";b.h.Amount=8;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG13",a);a=newl();b=newl();b.h.displayName="Golden_Saltwater|Taffy";b.h.sellPrice=100;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Spelunking_EXP_gain";b.h.desc_line2="by_[%.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="SpelunkEXPz";b.h.Amount=1;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG14",a);a=newl();b=newl();b.h.displayName="Golden_Sugar|Cookie";b.h.sellPrice=100;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_Joe_Momma";b.h.desc_line2="by_[%.";b.h.desc_line3="Golden_foods_are_never_consumed.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="DropRatez";b.h.Amount=2;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("FoodG15",a);a=newl();b=newl();b.h.displayName="Butter_Bar";b.h.sellPrice=1;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="GOLDEN_FOOD";b.h.lvReqToCraft="10";a.h.common=b;b=newl();b.h.desc_line1="Increases_your_Base_Accuracy";b.h.desc_line2="by_[._And_tastes_great!";b.h.desc_line3="This_is_technically_golden_food!";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="BaseAcc";b.h.Amount=60;b.h.Trigger=-1337;b.h.Cooldown=1;a.h.consumable=b;R.addNewConsumable("ButterBar",a);a=newl();b=newl();b.h.displayName="Bottled_Town|Teleport";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="TELEPORT";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_item_to_be";b.h.desc_line2="teleported_back_to_Town.";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("rtt0",a);a=newl();b=newl();b.h.displayName="Talent_Point|Reset_Fragment";b.h.sellPrice=200;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="FRAGMENT";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_item_to_turn_10_Fragments_into_1_Talent_Point_Reset_Potion._You'll_need_1_open_inventory_space_for_this_to_work.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("ResetFrag",a);a=newl();b=newl();b.h.displayName="Talent_Point|Reset_Potion";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="RESET_POTION";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_item_to_respec_all_your_Talent_Points!_Well,_except_for_the_Star_tab_points,_there's_a_different_potion_for_that.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("ResetCompleted",a);a=newl();b=newl();b.h.displayName="Star_Talent|Reset_Potion";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="RESET_POTION";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_item_to_refund_all_your_Star_Talent_Points!_Well,_except_for_the_Star_tab_points,_there's_a_different_potion_for..._no_wait,_this_IS_the_potion_for_that!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("ResetCompletedS",a);a=newl();b=newl();b.h.displayName="Sub_Class_Swap|Token";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="USABLE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_item_to_change_sub_class_within_your_class._It_won't_let_you_change_classes,_that_will_be_done_a_different_way_in_the_future...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("ClassSwap",a);a=newl();b=newl();b.h.displayName="Elite_Class_Swap|Token";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="USABLE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_item_to_change_elite_class_within_your_class._Divine_Knight_to_Blood_Berserker,_Beast_Master_to_Siege_Breaker,_etc.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("ClassSwapB",a);a=newl();b=newl();b.h.displayName="Complete_Class|Redo_Token";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="USABLE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="YOU_MUST_TAKE_OFF_EQUIPMENT_TO_USE_THIS._Hold_down_on_this_item_to_become_a_Lv_1_beginner_again._You_can_then_redo_the_promotion_quests_to_choose_a_new_class!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("ClassSwapC",a);a=newl();b=newl();b.h.displayName="Post_Office_Box|Reseto_Magnifico";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="USABLE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_reset_all_post_office_upgrades_made_on_this_character!_You'll_get_all_the_Box_Points_refunded_of_course,_no_problemo!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("ResetBox",a);a=newl();b=newl();b.h.displayName="Hat_Premiumifier";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="USABLE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="Drag_this_onto_any_normal_hat_to_turn_it_into_a_premium_hat!_Doing_so_will_wipe_all_it's_stats,_and_give_it_{1_all_stat_and_5_Premium_Upgrade_Slots,_just_like_any_other_premium_hat.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Ht",a);a=newl();b=newl();b.h.displayName="Premium_Stone|Refunder";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="USABLE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="Drag_this_onto_any_Premium_Hat_to_refund_all_Premium_Stones_used_on_it._You_must_have_at_least_4_open_inventory_spaces_to_use_this_btw";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("StonePremRestore",a);a=newl();b=newl();b.h.displayName="Premium_Bonus|Swapper";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="USABLE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="Put_this_stone_in_your_inventory,_with_2_premium_hats_to_its_left_and_right._Then_hold_down_on_the_stone_to_swap_their_special_bonuses!_Also_works_with_regular_hats_made_premium_by_the_Hat_Premiumifier";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("StonePremStatswap",a);a=newl();b=newl();b.h.displayName="Small_Experience|Balloon";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=50;b.h.Type="EXP_BALLOON";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_gain_EXP_in_the_skill_that's_displayed_in_the_corner_of_your_screen._If_you're_in_a_town,_you_will_gain_EXP_in_the_town_skill._The_amount_of_EXP_you_get_is_based_on_your_skill's_Lv.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("ExpBalloon1",a);a=newl();b=newl();b.h.displayName="Medium_Experience|Balloon";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=120;b.h.Type="EXP_BALLOON";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_gain_EXP_in_the_skill_that's_displayed_in_the_corner_of_your_screen._If_you're_in_a_town,_you_will_gain_EXP_in_the_town_skill._The_amount_of_EXP_you_get_is_based_on_your_skill's_Lv.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("ExpBalloon2",a);a=newl();b=newl();b.h.displayName="Large_Experience|Balloon";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=200;b.h.Type="EXP_BALLOON";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_gain_EXP_in_the_skill_that's_displayed_in_the_corner_of_your_screen._If_you're_in_a_town,_you_will_gain_EXP_in_the_town_skill._The_amount_of_EXP_you_get_is_based_on_your_skill's_Lv.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("ExpBalloon3",a);a=newl();b=newl();b.h.displayName="Job_Application";b.h.sellPrice=200;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="It's_a_registration_form_for_the";b.h.desc_line2="job_of_Sanitation_Comissioner.";b.h.desc_line3="One_of_the_requirements_is_being";b.h.desc_line4="able_to_pick_up_dog_poop_without";b.h.desc_line5="immediately_throwing_the_bag";b.h.desc_line6="on_the_ground_afterward.";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("JobApplication",a);a=newl();b=newl();b.h.displayName="Sculpting_Tools";b.h.sellPrice=400;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_gotta_embrace_the_marble!";b.h.desc_line2="You_gotta_sniff_the_marble!";b.h.desc_line3="You_gotta_lick_the_marble!";b.h.desc_line4="You_gotta_wash_the_marble!";b.h.desc_line5="You_gotta_BE_THE_MARBLE!";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("SmithingHammerChisel",a);a=newl();b=newl();b.h.displayName="Guilding_Tools";b.h.sellPrice=12500;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Drop_this_on_the_statue_man,_and_you'll_turn_him_to_gold_and_unlock_Golden_Statues!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("SmithingHammerChisel2",a);a=newl();b=newl();b.h.displayName="Onyx_Tools";b.h.sellPrice=12500;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Drop_this_on_the_statue_man,_and_you'll_turn_him_to_onyx_and_unlock_the_ability_to_trade_in_statues_for_Onyx_rank!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("SmithingHammerChisel3",a);a=newl();b=newl();b.h.displayName="Zenith_Tools";b.h.sellPrice=12500;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Drop_this_on_the_statue_man,_and_you'll_unlock_the_ability_to_drop_stacks_of_1_Million_Statues_for_Zenith_rank!_Also_unlocks_Zenith_Cluster_Farming,_talk_to_Zenelith_in_World_7_for_more_info.!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("SmithingHammerChisel4",a);a=newl();b=newl();b.h.displayName="BobJoePickle";b.h.sellPrice=1e4;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="He_was_one_of_the_good_ones...";b.h.desc_line2="Alas_he_is_now_just_a_pickle.";b.h.desc_line3="Good_for_scaring_a_cat_though!";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("BobJoePickle",a);a=newl();b=newl();b.h.displayName="BallJoePickle";b.h.sellPrice=4e4;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="What_have_they_done_to_ya_BobJoe?";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("BallJoePickle",a);a=newl();b=newl();b.h.displayName="BoneJoePickle";b.h.sellPrice=4e12;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="He_cackles,_he_spooks,_and_he..._multiplies_miniboss_HP_by_1.10x!?_And_he_STACKS_with_other_BoneJoePickles??!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("BoneJoePickle",a);a=newl();b=newl();b.h.displayName="Mining|Certificate";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_passed_Glumlee's_tutorial_quests._It's_worthless.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest1",a);a=newl();b=newl();b.h.displayName="Desert_Topaz";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Give_this_to_the_bird_in_town_to_unlock_the_portal_to_World_2!_You_can_come_back_to_World_1_whenever_you_want,_don't_worry.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Crystal1",a);a=newl();b=newl();b.h.displayName="Glacier_Quartz";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Restores_power_to_the_Glacial_Portal_in_the_desert_town,_allowing_travel_to_World_3!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Crystal2",a);a=newl();b=newl();b.h.displayName="Galaxial_Amethyst";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Restores_power_to_the_Galaxy_Portal_in_the_glacier_town,_allowing_travel_to_World_4!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Crystal3",a);a=newl();b=newl();b.h.displayName="Magma_Geode";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Restores_power_to_the_Magma_Portal_in_the_galaxy_town,_allowing_travel_to_World_5!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Crystal4",a);a=newl();b=newl();b.h.displayName="Spirit_Diamond";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Restores_power_to_the_Spirit_Portal_in_the_magma_rivertown,_allowing_travel_to_World_6!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Crystal5",a);a=newl();b=newl();b.h.displayName="Gem_to_W7";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Restores_power_to_the_W7_Portal_in_the_spirit_village,_allowing_travel_to_World_7!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Crystal6",a);a=newl();b=newl();b.h.displayName="Stone_Peanut";b.h.sellPrice=5e3;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_like_a_regular_peanut,_except";b.h.desc_line2="it's_made_of_stone_instead_of_pea.";b.h.desc_line3="I_bet_a_Rocklyte_would_enjoy_it!";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("PeanutS",a);a=newl();b=newl();b.h.displayName="Ketchup_Bottle";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="A_tiny_ketchup_bottle,_small_enough";b.h.desc_line2="for_a_Frog_to_use._Would_go";b.h.desc_line3="great_with_some_Mustard!";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest3",a);a=newl();b=newl();b.h.displayName="Mustard_Bottle";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="A_tiny_mustard_bottle,_small_enough";b.h.desc_line2="for_a_Frog_to_never_use_because";b.h.desc_line3="mustard_is_gross._Would_go_great";b.h.desc_line4="with_some_Ketchup!";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest4",a);a=newl();b=newl();b.h.displayName="Mayonnaise_Bottle";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="TRASH";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Why_did_someone_bury_a_bottle_of_mayo?_Wait..._why_did_you_go_dig_it_up??";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Mayo",a);a=newl();b=newl();b.h.displayName="Broken_Weapon";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="TRASH";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_totally_broken.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Trash",a);a=newl();b=newl();b.h.displayName="Dried_Paint_Blob";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="TRASH";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Its_all_hard_and_crusty_now.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Trash2",a);a=newl();b=newl();b.h.displayName="Engraved_Bullet";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="TRASH";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_a_bullet,_and_it's_got_your_name_on_it!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Trash3",a);a=newl();b=newl();b.h.displayName="Class_Certificate";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Proof_that_you_selected_a_class!_You're_on_your_way_to_the_top,_this_is_just_the_beginning!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest5",a);a=newl();b=newl();b.h.displayName="Scouting_Report";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It_says_a_Giant_Wolf-like_Golem_was";b.h.desc_line2="seen_walking_with_the_gem_even";b.h.desc_line3="deeper_into_the_Jungle.";b.h.desc_line4="Stiltzcho_has_purposefully_smudged_his";b.h.desc_line5="signature_so_that_it's_not";b.h.desc_line6="readable.";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest6",a);a=newl();b=newl();b.h.displayName="Strange_Rock";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Looks_like_the_piece_of_a_golem.";b.h.desc_line2="It_even_has_'Made_In_Golemtopia'";b.h.desc_line3="engraved_on_the_side_of_it.";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest7",a);a=newl();b=newl();b.h.displayName="Filler_bc_I_messed_up";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Filler.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest8",a);a=newl();b=newl();b.h.displayName="Green_Tea";b.h.sellPrice=1e3;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You're_playing_a_game_right_now";b.h.desc_line2="with_a_sub-plot_that_involves_a";b.h.desc_line3="jar_of_sand_falling_in_love_with";b.h.desc_line4="a_cup_of_tea._Just_thought_I'd";b.h.desc_line5="point_that_out.";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest10",a);a=newl();b=newl();b.h.displayName="Forest_Villas|Flyer_Thingy";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Solid_evidence_that_it's_possible";b.h.desc_line2="to_have_a_negative_crafting_level.";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest11",a);a=newl();b=newl();b.h.displayName="Wood_Board_Bone";b.h.sellPrice=7;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Dog_Bone_will_give_you_Boss_Keys_once_you_collect_a_few_of_these!_Idk_why_they_named_a_ghost_after_these_bones..._or_were_these_bones_named_after_the_ghost?";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest12",a);a=newl();b=newl();b.h.displayName="Empty_Box";b.h.sellPrice=7;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="An_empty_box,_the_perfect_place_to_put_all_your_Hermit_Cans,_Megalodon_teeth,_and_pure_water..._that_you_don't_have_anymore_haha!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest13",a);a=newl();b=newl();b.h.displayName="Triumphant_Treason";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_a_rendition_of_the_Battle_of_Sassasge,_wherein_Goldrichius_Von_Gallbladder_waged_war_on_the_municipal_kingdom_of_Sterling_S._Elvar";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("GoldricP2",a);a=newl();b=newl();b.h.displayName="Claiming_Cashe";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="The_victory_portrait_of_King_Goldrichius_Sr._after_successfully_dethroning_S.S._Elvar_from_the_East_Yum-Yum_dunedaries.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("GoldricP3",a);a=newl();b=newl();b.h.displayName="Giftmas_Box";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_open!_There's_a_santa_hat_in_one_of_these,_as_well_as_various_holiday_exclusive_goodies,_even_cards!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest30",a);a=newl();b=newl();b.h.displayName="Gem_Note";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="LAVA_LETTER";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Did_you_like_those_20_gems_you_just_picked_up?_Well_you'll_LOVE_the_500_gems_I_just_added_to_your_account._This_paper_is_worthless_btw_lol_it's_just_a_picture_of_a_gem.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest31",a);a=newl();b=newl();b.h.displayName="Bolt_Cutters";b.h.sellPrice=5e3;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="I_bet_if_you_dropped_these_on_a_sewer_grating,_it_would_snap_the_bars_right_off!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Cutter",a);a=newl();b=newl();b.h.displayName="Monster_Rating";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="'I_literally_just_die_over_and_over,_I_can't_even_fight_back_other_than_just_running_into_them._Honestly_I_wish_I_was_dead,_but_even_then_I_just_keep_respawning,_literally_the_worst_experience_ever,_1_star!!'";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest32",a);a=newl();b=newl();b.h.displayName="Player_Rating|With_Letter_P";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="'WTF_y_do_my_items_CONSTANTLY_DISAPPEAR_I_HATE_IT!!_Complete_RUBBISH!_1_STAR_UNTIL_YOU_FIX_MY_SPECIFIC_PROBLEM_and_even_then_I'll_probably_just_raise_it_to_2_stars_lol'";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest33",a);a=newl();b=newl();b.h.displayName="Player_Rating|With_Letter_S";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="'This_is_NOT_an_Idle_game!_I_actually_have_to_play_it_sometimes!_And_why_are_there_actual_pictures_on_the_screen,_instead_of_just_words_and_text_boxes??_I_can't_believe_I_paid_0_dollars_for_this_trash!'";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest34",a);a=newl();b=newl();b.h.displayName="Googley_Eyes";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SUMMON_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="I_remember_when_I_was_a_kid,_I_spent_an_HOUR_making_a_GLASS_container_look_like_it_was_a_little_friend_using_googley_eyes_just_like_these!_If_only_there_was_a_CONTAINER_in_this_game,_so_you_could_do_it_to!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest35",a);a=newl();b=newl();b.h.displayName="Dootjat_Eye";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SUMMON_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Blinks_repeatedly_when_close_to_the_Black_Market,_where_you_buy_the_Ankh_used_in_the_ice_zone_to_get_the_Hedjet..._wait,_wrong_game,_sorry!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest36",a);a=newl();b=newl();b.h.displayName="Silver_Antique";b.h.sellPrice=2e4;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="HUNK_OF_JUNK";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="An_old_lady_pawned_it_off_to_the_bazaar_claiming_it_was_some_'ancient_artifact_of_the_pharoah_King_Doot'._It's_probably_just_scrap_metal,_doubt_it's_even_real_silver._Would_make_for_a_decent_Necklace!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest37",a);a=newl();b=newl();b.h.displayName="Guild_Giftbox";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_open!_Contains_a_random_cool-kid_item,_like_gems,_exp_balloons,_or_even_time_candy!_Also,_1_in_every_500_gifts_contains_the_'Ultra_Unboxer'_Trophy!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest38",a);a=newl();b=newl();b.h.displayName="Lovey_Dovey|Letter";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_a_letter_to_spawn_a_Valenslime!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest39",a);a=newl();b=newl();b.h.displayName="Choco_Box";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_open_a_random_reward!_Possibilites_include_Gems,_exclusive_hats,_event_food,_event_cards,_and_more!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest40",a);a=newl();b=newl();b.h.displayName="Flowies";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Curse_you_flowey!_I_trusted_you,_I_accepted_your_pellets_of_friendship,_and_then_you_had_to_go_and_throw_it_all_away!_And_now_here_you_are,_trying_to_take_over_yet_another_video_game..._well_I_NOT_GONNA_LE--_oh_wait,_these_are_just_normal_flowers";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest41",a);a=newl();b=newl();b.h.displayName="Egg_Capsule";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_open_for_a_random_reward!_Or,_hold_down_for_a_LONG_time_to_open_them_faster..._yea,_dreams_do_come_true_#";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest42",a);a=newl();b=newl();b.h.displayName="Gummy_Bunny";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_summon_a_friendly_easter_monster._But_be_careful,_unlike_real_life_where_all_friends_are_genuine,_these_monsters_are_just_pretending_to_be_your_friend_for_personal_gain!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest43",a);a=newl();b=newl();b.h.displayName="Goldegg_Capsule";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_summon_a_mini_boss_or_a_green_mushroom._It's_a_50_50_shot_which_one_you_get!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest44",a);a=newl();b=newl();b.h.displayName="Sesame_Seed";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_KEY";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="The_key_to_Bandit_Bob's_Party_Dungeon!_No_not_that_dungeon..._you're_thinking_of_Snakenhotep's_Dungeon,_this_one's_for_Bandit_Bob's_dungeon._So_yea,_this_is_worthless.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest45",a);a=newl();b=newl();b.h.displayName="The_Bobber|Challenge_Scroll";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="A_great_behemoth_has_emerged_from_its_slumber..._and_it_now_roams_the_fishing_minigame!_If_you_catch_2_whales,_then_purposefully_avoid_catching_the_3rd_whale,_the_ocean_behemoth_will_eventually_appear!_Catch_it_to_win_a_trophy!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest46",a);a=newl();b=newl();b.h.displayName="Elderly_Peanut";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It_has_a_very_peculiar_stench..._the_smell_is_so_unbearable,_your_damage_is_lowered_by_50%_and_your_Max_HP_is_just_1!_Only_the_sands_of_a_dead_Biggie_Hours_Miniboss_could_reverse_the_aging_this_peanut_has_undergone!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest47",a);a=newl();b=newl();b.h.displayName="Pete_the_Peanut";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Now_that's_a_happy_looking_peanut!_I_wish_he_was_MY_best_friend,_but_no_one_wants_to_be_friends_with_sentient_item_dialogue_^";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest48",a);a=newl();b=newl();b.h.displayName="Summer_Cooler";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_open_for_a_random_reward!_Or,_hold_down_for_a_LONG_time_to_open_them_faster.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest49",a);a=newl();b=newl();b.h.displayName="Beach_Oyster";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_summon_a_bunch_of_Summer_Monsters,_and_get_a_random_Pearl!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest50",a);a=newl();b=newl();b.h.displayName="Golden_Oyster";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_get_a_random_special_reward!_Event_Points_do_not_expire,_you_keep_all_unspent_Event_Points_for_next_event!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest88",a);a=newl();b=newl();b.h.displayName="Skull_Coin";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_seeing_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest51",a);a=newl();b=newl();b.h.displayName="Coin";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_seeing_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest52",a);a=newl();b=newl();b.h.displayName="Palm_Tree_Log";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_seeing_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("PalmTreeD",a);a=newl();b=newl();b.h.displayName="Black_Pearl";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_gain_20%_EXP_in_the_skill_that's_shown_in_the_corner_of_the_screen._If_you're_in_a_town,_you_will_gain_EXP_in_the_town_skill._Only_works_on_skills_below_level_30.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Pearl4",a);a=newl();b=newl();b.h.displayName="Holy_Pearl";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_gain_Class_EXP._The_amount_you_gain_is_based_on_your_Class_LV.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Pearl5",a);a=newl();b=newl();b.h.displayName="Divinity_Pearl";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_gain_40%_EXP_in_the_current_skill_you're_doing!_If_you're_in_a_town,_you_will_gain_EXP_in_the_town_skill._Only_works_on_skills_below_level_50._IMPORTANT:_This_cannot_be_used_for_skills_in_World_5_or_beyond.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Pearl6",a);a=newl();b=newl();b.h.displayName="Meat_Cube";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_seeing_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest53",a);a=newl();b=newl();b.h.displayName="Sand_Pile";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_seeing_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest54",a);a=newl();b=newl();b.h.displayName="Buried_Treasure";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_seeing_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest55",a);a=newl();b=newl();b.h.displayName="Dootophone";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_vintage_Dootophone_to_active_all_the_obelisks_on_Doot's_burial_platform_at_once!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest56",a);a=newl();b=newl();b.h.displayName="Damaged_Cog";b.h.sellPrice=5e8;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_cog_to_turn_it_into_a_Refurbished_Cog,_IF_you_have_a_construction_LV_of_75{.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest57",a);a=newl();b=newl();b.h.displayName="Refurbished_Cog";b.h.sellPrice=500000010;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Made_from_a_Damaged_Cog,_which_you_can_buy_at_the_Town_Shop!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest58",a);a=newl();b=newl();b.h.displayName="Shuvelle's_Vote";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="A_slip_of_paper_indicating_that_a_Ms._Shuvelle_La_Deuge_intends_to_vote_for_Mayor_Hoggindaz";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest59",a);a=newl();b=newl();b.h.displayName="Yondergreens_Vote";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="A_slip_of_paper_indicating_that_a_Sir_Yondergreen_Von_Timberbottom_intends_to_vote_for_Mayor_Hoggindaz";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest60",a);a=newl();b=newl();b.h.displayName="Bill_Brr's_Vote";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="A_slip_of_paper_indicating_that_a_Mr._Bill_Brr_doesn't_intend_to_vote_for_any_of_these_political_puppets,_but_he_left_it_blank_so_you_filled_it_in_for_Hoggi.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest61",a);a=newl();b=newl();b.h.displayName="Signed_Contract";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_the_last_will_and_testament_of_some_penguin_monster._Just_pretend_you_signed_it,_ol'_Yondergreen_seems_a_little_blind_and_probably_wont_notice.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest62",a);a=newl();b=newl();b.h.displayName="Shovel";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_seeing_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest63",a);a=newl();b=newl();b.h.displayName="2021_Giftmas_Box";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_to_open!_Contains_a_random_Giftmas_goodie,_from_event_cards_to_foods!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest64",a);a=newl();b=newl();b.h.displayName="Pile_of|Processor_Chips";b.h.sellPrice=625e3;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="LAB_ADDITION";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Collect_3_of_these,_then_hold_down_on_the_stack_of_3_to_unlock_the_Chip_Repository!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest65",a);a=newl();b=newl();b.h.displayName="Strung_Jewels";b.h.sellPrice=25e5;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="LAB_ADDITION";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Collect_7_of_these,_then_hold_down_on_the_stack_of_7_to_unlock_the_Jewel_Spinner!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest66",a);a=newl();b=newl();b.h.displayName="Bottled_World|Town_Teleport";b.h.sellPrice=1e6;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="TELEPORT";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Buy_this_once_and_hold_down_on_it_to_permanently_allow_for_free_teleports_inbetween_World_Towns_without_consuming_a_teleport!_From_town_to_town,_free_of_charge!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest67",a);a=newl();b=newl();b.h.displayName="Anvil_Reset|Whetstone";b.h.sellPrice=3e5;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_item_to_completely_reset_your_spent_Anvil_Points_for_this_character.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Whetstone",a);a=newl();b=newl();b.h.displayName="Bucket_of_Slush";b.h.sellPrice=1e3;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="BUCKET";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Drop_this_on_the_snowy_pile_in_the_Refigeration_Station_in_World_3._There_are_rumors_that_the_recent_snowfall_will_coagulate_with_the_slush_in_horrible_ways...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest68",a);a=newl();b=newl();b.h.displayName="Skull";b.h.sellPrice=1e3;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It_may_be_a_skull,_but_it_sure_ain't_no_Killroy!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest69",a);a=newl();b=newl();b.h.displayName="Phone_Box";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="IdleOn_is_out_on_iOS_devices!_The_Rift_Ripper_must_have_kept_a_few_of_these_back_when_he_played_during_the_iOS_Launch_event..._Hold_down_to_open,_and_a_random_reward_will_drop_at_your_feet!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest70",a);a=newl();b=newl();b.h.displayName="Gem_Envelope";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Contains_a_random_number_of_gems,_hold_down_to_open!_It_could_be_just_a_couple_gems,_but_it_could_also_have_as_many_as_10,000_gems!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest71",a);a=newl();b=newl();b.h.displayName="Bottled_Wind";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="BOTTLED_WIND";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_instantly_gain_6_Hours_of_Sailing_Progress!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest72",a);a=newl();b=newl();b.h.displayName="Gaming_Fertilizer";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="GAMER_SOIL";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_instantly_gain_8_Hours_of_Gaming_Progress!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest73",a);a=newl();b=newl();b.h.displayName="Rift_Tear";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_shouldn't_be_reading_this..._unless_it's_like_on_the_Wiki_or_something,_then_yea_I_ain't_pointin'_no_fingers_or_nothing.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest74",a);a=newl();b=newl();b.h.displayName="Spring_Baggie";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_to_open!_Contains_a_random_Spring_Event_goodie,_from_event_cards_to_foods!_ALSO,_if_you_open_a_total_of_500_Baggies,_you'll_get_a_limited_edition_Spring_event_NAMETAG!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest75",a);a=newl();b=newl();b.h.displayName="Silver|Pocketwatch";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_change_your_daily_reset_time_by_15_minutes._If_this_item_is_on_the_left_side_of_the_inventory,_your_daily_reset_will_be_15_minutes_LATER._If_it's_on_the_right_side,_your_daily_reset_will_be_15_minutes_EARLIER.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest76",a);a=newl();b=newl();b.h.displayName="Gold|Pocketwatch";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_fast_forward_a_day,_restocking_shops_and_triggering_various_daily_rewards_and_systems.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest77",a);a=newl();b=newl();b.h.displayName="Equinox_Mirror";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="TELEPORTER";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_enter_the_Equinox_Valley_map._You_can_later_teleport_there_from_the_map_once_you_unlock_Dreams";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest78",a);a=newl();b=newl();b.h.displayName="Falloween_Treat";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_to_open!_Contains_a_random_Falloween_Event_goodie,_including_3_limited_time_Monster_Masks,_check_Patch_Notes_in_Discord_or_Steam_for_info!_Also,_if_you_open_500_Treats_you'll_get_the_Falloween_Event_NAMETAG!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest79",a);a=newl();b=newl();b.h.displayName="Crop_Transfer|Ticket";b.h.sellPrice=1e14;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Drop_this_on_the_Legumulyte_(found_deep_in_Bamboo_Forest)_to_trade_in_ALL_your_crops_for_magic_beans_(Crop_Scientist_progress_wont_be_lost)_Or,_hold_down_on_ticket_to_see_how_many_beans_you_will_get_(you_wont_lose_anything_doing_this)";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest80",a);a=newl();b=newl();b.h.displayName="Compost_Bag";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="FARM_COMPOST";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_instantly_gain_4_Hours_of_Farming_Progress!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest81",a);a=newl();b=newl();b.h.displayName="Summoner_Stone";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SUMMONER_STONE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_instantly_gain_4_Hours_of_Summoning_Essence_Generation!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest82",a);a=newl();b=newl();b.h.displayName="Blue_Tome_Pages";b.h.sellPrice=1e11;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DROPPABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Drop_a_stack_of_2_of_these_on_the_Tome_to_permanently_add_a_new_Bonus_Type!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest83",a);a=newl();b=newl();b.h.displayName="Red_Tome_Pages";b.h.sellPrice=1e15;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DROPPABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Drop_a_stack_of_7_of_these_on_the_Tome_to_permanently_add_a_new_Bonus_Type!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest84",a);a=newl();b=newl();b.h.displayName="Anniversary_Box";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="IdleOn_is_5_years_old!_Hold_down_to_open_this_box_and_celebrate!_Contains_a_random_Anniversary_goodie,_from_event_cards_to_foods_to_special_event_hats!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest85",a);a=newl();b=newl();b.h.displayName="Basketball";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_item_to_play_Basketball!_This_way_you_can_play_from_ANY_map,_even_while_Auto_mode_is_on!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest86",a);a=newl();b=newl();b.h.displayName="Secret_Map";b.h.sellPrice=1e4;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_item_while_standing_in_the_secret_location_to_teleport_to_The_Oasis...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest87",a);a=newl();b=newl();b.h.displayName="Event_Point";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_item_to_get_1_Event_Point!_Spend_these_at_the_Event_NPC_in_town_for_permanent_bonuses,_and_don't_worry,_unspent_points_are_saved_for_next_event!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest89",a);a=newl();b=newl();b.h.displayName="Blinding_Lantern";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_instantly_gain_2_Hours_of_all_Cavern_progress_and_Villager_exp_gain!______________________YOU_CAN_ONLY_USE_12_PER_DAY!_This_is_because_new_caverns_came_out_recently.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest90",a);a=newl();b=newl();b.h.displayName="Golden_Gift";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_get_a_random_special_reward!_Event_Points_do_not_expire,_you_keep_all_unspent_Event_Points_for_next_event!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest91",a);a=newl();b=newl();b.h.displayName="Giftmas_Present";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Contains_a_random_Giftmas_goodie,_from_event_cards_to_foods_and_maybe_even_a_GOLDEN_GIFT!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest92",a);a=newl();b=newl();b.h.displayName="Worship_Floppy|Disc";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Collect_1000_or_more_of_these,_then_HOLD_DOWN_on_them_to_unlock_the_Saveload_Feature_for_ALL_Worship_runs!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest93",a);a=newl();b=newl();b.h.displayName="Temple_Torch";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="You_really_shouldn't_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest94",a);a=newl();b=newl();b.h.displayName="Winter_Candle";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_WISH";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_candle_to_make_a_wish_for_new_pets!_Who_knows,_maybe_they'll_come_true!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest95",a);a=newl();b=newl();b.h.displayName="Lucky_Candle";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_WISH";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_candle_to_see_the_5th_Birthday_Lucky_Pet_winners_list!_There's_a_new_winner_every_5_MINUTES!_WOW!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest111",a);a=newl();b=newl();b.h.displayName="Aethermoon";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_instantly_get_1_Hour_of_Dust_added_to_the_Compass!_The_amount_is_based_on_the_current_hourly_rate_shown_in_AFK_info._You_must_be_on_your_Windwalker_to_use_this.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest96",a);a=newl();b=newl();b.h.displayName="Charred_Bone";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_instantly_get_1_Hours_of_Bones_added_to_the_Grimoire!_The_amount_is_based_on_the_current_hourly_rate_shown_in_AFK_info._You_must_be_on_your_Deathbringer_to_use_this.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest97",a);a=newl();b=newl();b.h.displayName="Charred_Fragment";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Collect_1000_of_these_to_unlock_AFK_Bones_for_Deathbringer!_Once_you_have_1000,_hold_down_on_this_item._You_will_then_earn_1_Charred_Bone_per_1hr_AFK_claimed_on_your_Deathbringer.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest98",a);a=newl();b=newl();b.h.displayName="Prisma_Bubble";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldn't_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest99",a);a=newl();b=newl();b.h.displayName="Aether_Fragment";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Collect_1000_of_these_to_unlock_AFK_Dust_for_Windwalker!_Once_you_have_1000,_hold_down_on_this_item._You_will_then_earn_1_Aethermoon_per_1hr_AFK_claimed_on_your_Windwalker.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest100",a);a=newl();b=newl();b.h.displayName="Arcane_Rock";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_instantly_get_1_Hours_of_Tachyons_added_to_the_Tesseract!_The_amount_is_based_on_the_current_hourly_rate_shown_in_AFK_info._You_must_be_on_your_Arcane_Cultist_to_use_this.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest101",a);a=newl();b=newl();b.h.displayName="Spirit_Offering";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="INGREDIENT";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Used_in_the_creation_of_World_6_time_candies._Get_the_recipe_from_world_7_fish!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest102",a);a=newl();b=newl();b.h.displayName="Strange_Gold_Piece";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="UNKNOWN";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="I_already_told_you,_I_have_no_idea_what_this_is..._how_about_YOU_tell_ME_an_item's_description_for_once,_eh?";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("CaveGoldPiece",a);a=newl();b=newl();b.h.displayName="Fishbowl";b.h.sellPrice=1e30;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SECRET_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="It's_got_two_fish,_but_more_importantly,_it's_got_four_water!_..._no,_FIVE_water!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest103",a);a=newl();b=newl();b.h.displayName="Darts";b.h.sellPrice=1e3;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_on_this_item_to_play_Darts!_This_way_you_can_play_from_ANY_map,_even_while_Auto_mode_is_on!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest104",a);a=newl();b=newl();b.h.displayName="Unstable|Reliquarium";b.h.sellPrice=1e32;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="SECRET_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Bring_this_to_the_crazy_prince_of_Coralcave,_but_be_warned..._______Whilst_in_your_posession,_your_damage_will_be_greatly_reduced,_only_worsening_with_every_successful_delivery.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest105",a);a=newl();b=newl();b.h.displayName="Urie's_Special|Childhood_Rock";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="QUEST_ITEM";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Ewww_this_smells_like_hardened..._cooking_oil..?_Oh,_oooohhh!________Drop_this_at_the_beanstalk,_and_you'll_be_able_to_drop_stacks_of_1_million_of_each_Golden_Food_for_even_larger_bonuses!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest106",a);a=newl();b=newl();b.h.displayName="Arcane_Fragment";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Collect_1000_of_these_to_unlock_AFK_Tachyons_for_Arcane_Cultist!_Once_you_have_1000,_hold_down_on_this_item._You_will_then_earn_1_Arcane_Rock_per_1hr_AFK_claimed_on_your_Arcane_Cultist.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest107",a);a=newl();b=newl();b.h.displayName="Stamina_Battery";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_instantly_regenerate_the_Spelunking_Stamina_for_all_your_players!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest108",a);a=newl();b=newl();b.h.displayName="Cropfall_Basket";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_open,_and_keep_holding_to_open_multiple._Drops_a_random_Cropfall_goodie_on_the_ground,_from_event_cards_to_special_event_items!_Remember_to_collect_all_50_each_day_for_a_FREE_Wheel_Spin!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest109",a);a=newl();b=newl();b.h.displayName="Zenith_Cluster";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CURRENCY";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Created_by_having_1,000,000_Statues_in_your_inventory_at_once..._@_Bring_these_to_the_Zenelith_in_World_7_in_exchange_for_powerful_bonuses!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest110",a);a=newl();b=newl();b.h.displayName="Giftmas_Gift";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_open!_Contains_a_random_Giftmas_goodie,_from_gems_to_limited_time_Hats_and_Nametags!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest113",a);a=newl();b=newl();b.h.displayName="Glimmerwick|Candle";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_make_a_wish._If_it_comes_true,_you_will_get_a_Top_0.1%_Tome_Nametag,_just_like_you've_always_wanted!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest114",a);a=newl();b=newl();b.h.displayName="Half_Finished|Research_Papers";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="USABLE";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_instantly_gain_2_Hours_of_Research_progress!_That_includes_Minehead_currency_too!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest115",a);a=newl();b=newl();b.h.displayName="Edible_Coin";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="EVENT_BOX";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_open!_Contains_a_random_Goldrush_goodie,_from_gems_to_limited_time_Hats_and_Nametags!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Quest117",a);a=newl();b=newl();b.h.displayName="Anvil_Tab_2";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=2;b.h.Type="ANVIL_EXPANSION";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Unlocks_the_2nd_tab_of_craftable";b.h.desc_line2="items_for_all_anvils!";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentSmithingTabs2",a);a=newl();b=newl();b.h.displayName="Anvil_Tab_3";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=3;b.h.Type="ANVIL_EXPANSION";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Unlocks_the_3rd_tab_of_craftable";b.h.desc_line2="items_for_all_anvils!";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentSmithingTabs3",a);a=newl();b=newl();b.h.displayName="Anvil_Tab_4";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=4;b.h.Type="ANVIL_EXPANSION";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Unlocks_the_4th_tab_of_craftable";b.h.desc_line2="items_for_all_anvils!";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentSmithingTabs4",a);a=newl();b=newl();b.h.displayName="Anvil_Tab_5";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=5;b.h.Type="ANVIL_EXPANSION";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Unlocks_the_5th_tab_of_craftable";b.h.desc_line2="items_for_all_anvils!";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentSmithingTabs5",a);a=newl();b=newl();b.h.displayName="Anvil_Tab_6";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=6;b.h.Type="ANVIL_EXPANSION";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Unlocks_the_6th_tab_of_craftable";b.h.desc_line2="items_for_all_anvils!";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentSmithingTabs6",a);a=newl();b=newl();b.h.displayName="Anvil_Tab_7";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=7;b.h.Type="ANVIL_EXPANSION";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Unlocks_the_7th_tab_of_craftable";b.h.desc_line2="items_for_all_anvils!";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentSmithingTabs7",a);a=newl();b=newl();b.h.displayName="Power_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=0;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="A_stone_statue_sculpted_in_the";b.h.desc_line2="likeness_of_an_absolute_unit.";b.h.desc_line3="Give_this_to_the_Statue_Man_in";b.h.desc_line4="return_for_some_bonus_stats.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues1",a);a=newl();b=newl();b.h.displayName="Speed_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=1;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="A_stone_statue_that_isnt_actually";b.h.desc_line2="fast_because_its_made_of_stone";b.h.desc_line3="and_stone_can't_move.";b.h.desc_line4="Give_this_to_the_Statue_Man_in";b.h.desc_line5="return_for_some_bonus_stats";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues2",a);a=newl();b=newl();b.h.displayName="Mining_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=2;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="A_stone_statue_that_resembles";b.h.desc_line2="some_sort_of_double_edged_scythe.";b.h.desc_line3="Give_this_to_the_Statue_Man_in";b.h.desc_line4="return_for_some_bonus_stats";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues3",a);a=newl();b=newl();b.h.displayName="Feasty_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=3;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="A_stone_statue_that_looks_good";b.h.desc_line2="enough_to_eat_to_anyone_who";b.h.desc_line3="doesn't_notice_that_it's_inedible.";b.h.desc_line4="Give_this_to_the_Statue_Man_in";b.h.desc_line5="return_for_some_bonus_stats";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues4",a);a=newl();b=newl();b.h.displayName="Health_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=4;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="A_stone_statue_made_by_someone";b.h.desc_line2="for_a_romantic_propsal._I_don't";b.h.desc_line3="think_it_ended_well.";b.h.desc_line4="Give_this_to_the_Statue_Man_in";b.h.desc_line5="return_for_some_bonus_stats";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues5",a);a=newl();b=newl();b.h.displayName="Kachow_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=5;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="A_stone_statue_named_after_the";b.h.desc_line2="catch_phrase_of_a_very_fast_and";b.h.desc_line3="very_not_real_red_car.";b.h.desc_line4="Give_this_to_the_Statue_Man_in";b.h.desc_line5="return_for_some_bonus_stats";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues6",a);a=newl();b=newl();b.h.displayName="Lumberbob_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=6;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="A_stone_statue_named_in_a_world";b.h.desc_line2="where_the_name_Jack_doesn't";b.h.desc_line3="exist.";b.h.desc_line4="Give_this_to_the_Statue_Man_in";b.h.desc_line5="return_for_some_bonus_stats";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues7",a);a=newl();b=newl();b.h.displayName="Thicc_Skin_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=7;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="I_don't_think_the_sculptor_who_named_this_statue_back_in_3000_BC_would_be_happy_with_how_his_typo_would_be_interpreted.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues8",a);a=newl();b=newl();b.h.displayName="Oceanman_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=8;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="What's_that,_statue?_You_want_to..._take_me_by_the_hand_and_lead_me_to_the_land?_With_that_land_pecifically_being_the_one_that_you_understand?";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues9",a);a=newl();b=newl();b.h.displayName="Ol_Reliable|Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=9;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="It_takes_a_true_artist_to_make_a_realistic_statue_like_this_one._He_captured_the_flying_aspect_of_those_stone_flies_perfectly!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues10",a);a=newl();b=newl();b.h.displayName="Exp_Book_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=10;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="I_haven't_read_a_book_since_middle_school,_so_I'm_just_assuming_this_is_what_they_look_like.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues11",a);a=newl();b=newl();b.h.displayName="Anvil_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=11;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="A_little_monument_to_the_efforts_of_a_most_devious_coyote,_whose_dreams_were_always_just_out_of_reach,_and_whose_head_often_felt_the_crushing_blow_of_defeat.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues12",a);a=newl();b=newl();b.h.displayName="Cauldron_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=12;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="They_used_to_tie_women_to_these_things_and_throw_them_into_the_ocean_to_see_if_they_were_a_witch._If_they_were,_they'd_use_all_the_water_in_the_ocean_to_upgrade_the_cauldron_and_thus_not_drown!_Not_sure_what_happened_if_they_werent.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues13",a);a=newl();b=newl();b.h.displayName="Beholder_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=13;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="This_statue_is_beautiful!_Well,_at_least_to_me.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues14",a);a=newl();b=newl();b.h.displayName="Bullseye_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=14;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="This_statue_was_created_by_shooting_a_target_statue_into_a_stationary_arrow_statue.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues15",a);a=newl();b=newl();b.h.displayName="Box_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=15;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="It's_more_of_an_open_container_than_a_box,_really.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues16",a);a=newl();b=newl();b.h.displayName="Twosoul_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=16;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="A_statue_of_the_soul.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues17",a);a=newl();b=newl();b.h.displayName="EhExPee_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=17;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="The_sculptor_got_so_fed_up_with_people_misinterpreting_his_previous_statues,_he_felt_the_need_to_spell_this_one_out.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues18",a);a=newl();b=newl();b.h.displayName="Seesaw_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=18;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="The_end_result_of_someone_trying_to_cut_a_slab_in_half_with_a_ceramic_saw,_and_then_leaving_early_after_they_saw_me_watching_them_in_the_bushes,_writing_down_what_they_were_doing_in_this_description.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues19",a);a=newl();b=newl();b.h.displayName="Pecunia_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=19;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="This_statue_gonna_make_u_heckin_rich!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues20",a);a=newl();b=newl();b.h.displayName="Mutton_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=20;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="This_statue_makes_me_really_hungry..._but_for_some_reason_it_inspires_me_to_cook_rather_than_giving_higher_food_bonuses.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues21",a);a=newl();b=newl();b.h.displayName="Egg_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=21;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="This_statue_somehow_boosts_the_effectiveness_of_Mobs_getting_it_on...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues22",a);a=newl();b=newl();b.h.displayName="Battleaxe_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=22;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="This_statue_makes_you_do_more_damage._Nothing_fancy.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues23",a);a=newl();b=newl();b.h.displayName="Spiral_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=23;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="This_statue_will_bring_you_closer_to_god._Or_gods_in_this_case,_the_world_of_IdleOn_is_polytheistic!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues24",a);a=newl();b=newl();b.h.displayName="Boat_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=24;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="This_statue_does_not_actually_function_as_a_boat,_and_will_sink_immediately,_as_youd_expect_a_large_piece_of_stone_would.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues25",a);a=newl();b=newl();b.h.displayName="Compost_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=25;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="This_statue_looks_exactly_like_the_Compost_pot_in_the_Floating_Gardens_of_the_Spirit_Valley_town.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues26",a);a=newl();b=newl();b.h.displayName="Stealth_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=26;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="This_statue_was_crafted_in_the_image_and_likeness_of_the_legendary_Gray_Fox._The_resemblance_to_your_meager_stick_figure_bodies_is_purely_coincidental.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues27",a);a=newl();b=newl();b.h.displayName="Essence_Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=27;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="This_statue,_despite_being_a_grey_brownish_colour,_actually_helps_generate_white_essence._It's_weird_and_quirkly_like_that...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues28",a);a=newl();b=newl();b.h.displayName="Villager|Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=28;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="It_gives_a_MULTIPLICATIVE_bonus_of_Villager_EXP,_despite_the_bonus_description_saying_percent!_Wowie_Zowie_Multerrific!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues29",a);a=newl();b=newl();b.h.displayName="Dragon_Warrior|Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=29;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="It_somehow_boosts_the_bonuses_given_by_all_other_statues!!!_You_don't_understand_what_that_means?_It's_ok,_I_didn't_get_it_the_first_time_either...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues30",a);a=newl();b=newl();b.h.displayName="Spelunky|Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=30;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="This_statue_right_here_will_boost_your_Spelunking_EXP_gain!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues31",a);a=newl();b=newl();b.h.displayName="Reef_Coral|Statue";b.h.sellPrice=10;b.h.typeGen="dStatueStone";b.h.ID=31;b.h.Type="STATUE";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.desc_line1="I_think_this_statue_will_give_you_more_Daily_Coral_for_the_Coral_Reef!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("EquipmentStatues32",a);a=newl();b=newl();b.h.displayName="Beginner_Recipe";b.h.sellPrice=1;b.h.typeGen="aRecipe";b.h.ID=0;b.h.Type="ANVIL_RECIPE";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=999;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("SmithingRecipes1",a);a=newl();b=newl();b.h.displayName="Novice_Recipe";b.h.sellPrice=1;b.h.typeGen="aRecipe";b.h.ID=0;b.h.Type="ANVIL_RECIPE";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=999;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("SmithingRecipes2",a);a=newl();b=newl();b.h.displayName="Apprentice_Recipe";b.h.sellPrice=1;b.h.typeGen="aRecipe";b.h.ID=0;b.h.Type="ANVIL_RECIPE";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=999;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("SmithingRecipes3",a);a=newl();b=newl();b.h.displayName="Journeyman_Recipe";b.h.sellPrice=1;b.h.typeGen="aRecipe";b.h.ID=0;b.h.Type="ANVIL_RECIPE";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=999;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("SmithingRecipes4",a);a=newl();b=newl();b.h.displayName="Adept_Recipe";b.h.sellPrice=1;b.h.typeGen="aRecipe";b.h.ID=0;b.h.Type="ANVIL_RECIPE";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=999;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("SmithingRecipes5",a);a=newl();b=newl();b.h.displayName="Master_Recipe";b.h.sellPrice=1;b.h.typeGen="aRecipe";b.h.ID=0;b.h.Type="ANVIL_RECIPE";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=999;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("SmithingRecipes6",a);a=newl();b=newl();b.h.displayName="Virtuoso_Recipe";b.h.sellPrice=1;b.h.typeGen="aRecipe";b.h.ID=0;b.h.Type="ANVIL_RECIPE";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=999;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("SmithingRecipes7",a);a=newl();b=newl();b.h.displayName="Special_Talent|Book";b.h.sellPrice=100;b.h.typeGen="aTalentBook";b.h.ID=0;b.h.Type="TALENT_BOOK";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=999;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("TalentBook1",a);a=newl();b=newl();b.h.displayName="Beginner_Talent|Book";b.h.sellPrice=100;b.h.typeGen="aTalentBook";b.h.ID=0;b.h.Type="TALENT_BOOK";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=999;b.h.Class="BEGINNER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("TalentBook2",a);a=newl();b=newl();b.h.displayName="Warrior_Talent|Book";b.h.sellPrice=100;b.h.typeGen="aTalentBook";b.h.ID=0;b.h.Type="TALENT_BOOK";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=999;b.h.Class="WARRIOR";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("TalentBook3",a);a=newl();b=newl();b.h.displayName="Archer_Talent|Book";b.h.sellPrice=100;b.h.typeGen="aTalentBook";b.h.ID=0;b.h.Type="TALENT_BOOK";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=999;b.h.Class="ARCHER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("TalentBook4",a);a=newl();b=newl();b.h.displayName="Wizard_Talent|Book";b.h.sellPrice=100;b.h.typeGen="aTalentBook";b.h.ID=0;b.h.Type="TALENT_BOOK";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=999;b.h.Class="MAGE";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;R.addNewEquip("TalentBook5",a);a=newl();b=newl();b.h.displayName="Smithing_Exp";b.h.sellPrice=1;b.h.typeGen="dExpOrb";b.h.ID=1;b.h.Type="EXPERIENCE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="A_little_ball_of_pure_energy!";b.h.desc_line2="It's_sole_purpose_is_to_give_the";b.h.desc_line3="creator_smithing_exp._It_is_basically";b.h.desc_line4="useless_in_its_crafted_state.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("ExpSmith1",a);a=newl();b=newl();b.h.displayName="Distilled_Water";b.h.sellPrice=50;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MATERIAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="The_full_filtration_process_also_involves_filtering_the_diamonds_through_a_vat_of_diamonds_before_using_those_filtered_diamonds_to_filter_the_water!_If_only_they'd_filter_their_filtration_process_through_diamonds_so_this_item_description_wouldn't_be_so_long.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("PureWater",a);a=newl();b=newl();b.h.displayName="Dense_Water";b.h.sellPrice=50;b.h.typeGen="bCraft";b.h.ID=0;b.h.Type="MATERIAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="It's_like_a_bowl_of_oatmeal,_but_double_the_thiccness_and_hold_the_oats.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("PureWater2",a);a=newl();b=newl();b.h.displayName="Garbage";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Island0",a);a=newl();b=newl();b.h.displayName="Bottle";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Island1",a);a=newl();b=newl();b.h.displayName="Clam_Pearl";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("ClamPearl0",a);a=newl();b=newl();b.h.displayName="Pure_Pearl";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("ClamPearl1",a);a=newl();b=newl();b.h.displayName="Vibrant_Coral";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CORAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Give_these_to_the_Dancing_Coral_to_unlock_a_new_synergy_bonus_for_construction!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Coral1",a);a=newl();b=newl();b.h.displayName="Glowing_Coral";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CORAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Give_these_to_the_Dancing_Coral_to_unlock_a_new_synergy_bonus_for_construction!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Coral2",a);a=newl();b=newl();b.h.displayName="Char_Coral";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CORAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Give_these_to_the_Dancing_Coral_to_unlock_a_new_synergy_bonus_for_construction!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Coral3",a);a=newl();b=newl();b.h.displayName="Neon_Coral";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CORAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Give_these_to_the_Dancing_Coral_to_unlock_a_new_synergy_bonus_for_construction!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Coral4",a);a=newl();b=newl();b.h.displayName="Aegean_Coral";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CORAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Give_these_to_the_Dancing_Coral_to_unlock_a_new_synergy_bonus_for_construction!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Coral5",a);a=newl();b=newl();b.h.displayName="Gilded_Coral";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CORAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Give_these_to_the_Dancing_Coral_to_unlock_a_new_synergy_bonus_for_construction!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Coral6",a);a=newl();b=newl();b.h.displayName="Twisted_Coral";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CORAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Give_these_to_the_Dancing_Coral_to_unlock_a_new_synergy_bonus_for_construction!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Coral7",a);a=newl();b=newl();b.h.displayName="Eternal_Coral";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="CORAL";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="Give_these_to_the_Dancing_Coral_to_unlock_a_new_synergy_bonus_for_construction!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Coral8",a);a=newl();b=newl();b.h.displayName="Femur";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Bone0",a);a=newl();b=newl();b.h.displayName="Ribcage";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Bone1",a);a=newl();b=newl();b.h.displayName="Cranium";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Bone2",a);a=newl();b=newl();b.h.displayName="Bovinae";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Bone3",a);a=newl();b=newl();b.h.displayName="Stardust";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Dust0",a);a=newl();b=newl();b.h.displayName="Moondust";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Dust1",a);a=newl();b=newl();b.h.displayName="Solardust";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Dust2",a);a=newl();b=newl();b.h.displayName="Cooldust";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Dust3",a);a=newl();b=newl();b.h.displayName="Novadust";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Dust4",a);a=newl();b=newl();b.h.displayName="Commemorative_Coin";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("WWcoin",a);a=newl();b=newl();b.h.displayName="Singulon";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Tach0",a);a=newl();b=newl();b.h.displayName="Doubulon";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Tach1",a);a=newl();b=newl();b.h.displayName="Verdon";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Tach2",a);a=newl();b=newl();b.h.displayName="Bludon";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Tach3",a);a=newl();b=newl();b.h.displayName="Massivon";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Tach4",a);a=newl();b=newl();b.h.displayName="Aurion";b.h.sellPrice=50;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="DUNGEON_EVAPORATE";b.h.lvReqToCraft="0";a.h.common=b;b=newl();b.h.desc_line1="You_shouldnt_be_reading_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;R.addNewQuest("Tach5",a);""" # fmt: skip # noqa -# `scripts.ItemDefinitions5` in source. Last updated in v2.503 +# `scripts.ItemDefinitions5` in source. Last updated in v2.505 # paste body of the `make` function (excluding outer curly braces) # remove all spaces and newlines script_item_definitions_5 = """ma.itemDefs=newl();vara=newl(),b=newl();b.h.displayName="Nomwich";b.h.sellPrice=3;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="DUNGEON_FOOD";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=20;b.h.Trigger=50;b.h.Cooldown=30;a.h.consumable=b;ma.addNewConsumable("FoodHealth1d",a);a=newl();b=newl();b.h.displayName="Hotdog";b.h.sellPrice=7;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="DUNGEON_FOOD";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=20;b.h.Trigger=50;b.h.Cooldown=30;a.h.consumable=b;ma.addNewConsumable("FoodHealth2d",a);a=newl();b=newl();b.h.displayName="Big_Cake";b.h.sellPrice=15;b.h.typeGen="cFood";b.h.ID=0;b.h.Type="DUNGEON_FOOD";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.desc_line1="Auto-Used_when_your_health_goes";b.h.desc_line2="below_50%.";b.h.desc_line3="Restores_[_HP.";b.h.desc_line4="Has_a_]_second_Cooldown.";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Health";b.h.Amount=20;b.h.Trigger=50;b.h.Cooldown=30;a.h.consumable=b;ma.addNewConsumable("FoodHealth3d",a);a=newl();b=newl();b.h.displayName="Arcanist_Staff";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=10;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="MAGE";b.h.Speed=5;b.h.Reach=80;b.h.Weapon_Power=20;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_ARCANIST_DMG";b.h.UQ1val=10;b.h.UQ2txt="%_EXTRA_TACHYONS";b.h.UQ2val=1;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("EquipmentWandsArc0",a);a=newl();b=newl();b.h.displayName="Cultist_Ring";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=0;b.h.Type="RING";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="MAGE";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_ARCANIST_ACC";b.h.UQ1val=5;b.h.UQ2txt="%_EXTRA_TACHYONS";b.h.UQ2val=1;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("EquipmentRingsArc0",a);a=newl();b=newl();b.h.displayName="Tempest_Bow|of_Dust";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=5;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ARCHER";b.h.Speed=5;b.h.Reach=220;b.h.Weapon_Power=20;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_EXTRA_DUST";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("EquipmentBowsTempest0",a);a=newl();b=newl();b.h.displayName="Tempest_Bow|of_Ice";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=7;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ARCHER";b.h.Speed=5;b.h.Reach=220;b.h.Weapon_Power=20;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_ICE_ELEMENT_DMG";b.h.UQ1val=25;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("EquipmentBowsTempest1",a);a=newl();b=newl();b.h.displayName="Tempest_Bow|of_Fire";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=10;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ARCHER";b.h.Speed=5;b.h.Reach=220;b.h.Weapon_Power=20;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_FIRE_ELEMENT_DMG";b.h.UQ1val=25;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("EquipmentBowsTempest2",a);a=newl();b=newl();b.h.displayName="Tempest_Bow|of_Wind";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=12;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ARCHER";b.h.Speed=5;b.h.Reach=220;b.h.Weapon_Power=20;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_WIND_ELEMENT_DMG";b.h.UQ1val=25;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("EquipmentBowsTempest3",a);a=newl();b=newl();b.h.displayName="Tempest_Bow|of_Grass";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=8;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ARCHER";b.h.Speed=5;b.h.Reach=220;b.h.Weapon_Power=20;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_GRASS_ELEMENT_DMG";b.h.UQ1val=25;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("EquipmentBowsTempest4",a);a=newl();b=newl();b.h.displayName="Tempest_Ring|of_Leef";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=0;b.h.Type="RING";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ARCHER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_GRASS_ELEMENT_DMG";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;ma.addNewEquip("EquipmentRingsTempest0",a);a=newl();b=newl();b.h.displayName="Tempest_Ring|of_Ice";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=0;b.h.Type="RING";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ARCHER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_ICE_ELEMENT_DMG";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;ma.addNewEquip("EquipmentRingsTempest1",a);a=newl();b=newl();b.h.displayName="Tempest_Ring|of_Lava";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=0;b.h.Type="RING";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ARCHER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_FIRE_ELEMENT_DMG";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;ma.addNewEquip("EquipmentRingsTempest2",a);a=newl();b=newl();b.h.displayName="Tempest_Ring|of_Carbon";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=0;b.h.Type="RING";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ARCHER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_WIND_ELEMENT_DMG";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;ma.addNewEquip("EquipmentRingsTempest3",a);a=newl();b=newl();b.h.displayName="Tempest_Ring|of_Power";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=0;b.h.Type="RING";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ARCHER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TEMPEST_DAMAGE";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;ma.addNewEquip("EquipmentRingsTempest4",a);a=newl();b=newl();b.h.displayName="Tempest_Ring|of_Defense";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=0;b.h.Type="RING";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ARCHER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TEMPEST_DEFENCE";b.h.UQ1val=25;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;ma.addNewEquip("EquipmentRingsTempest5",a);a=newl();b=newl();b.h.displayName="Tempest_Ring|of_Gold";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=0;b.h.Type="RING";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ARCHER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_EXTRA_DUST";b.h.UQ1val=25;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;ma.addNewEquip("EquipmentRingsTempest6",a);a=newl();b=newl();b.h.displayName="Tempest_Ring|of_Death";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=0;b.h.Type="RING";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ARCHER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TEMPEST_CRIT_DMG";b.h.UQ1val=30;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=3;a.h.equip=b;ma.addNewEquip("EquipmentRingsTempest7",a);a=newl();b=newl();b.h.displayName="Tempest_Ring|of_Punchies";b.h.sellPrice=1;b.h.typeGen="aRing";b.h.ID=0;b.h.Type="RING";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ARCHER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TEMPEST_ATK_SPD";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=1;a.h.equip=b;ma.addNewEquip("EquipmentRingsTempest8",a);a=newl();b=newl();b.h.displayName="Tempest_Ring|Stone_60_PCT";b.h.sellPrice=125;b.h.typeGen="dStone";b.h.ID=7;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_Tempest_Ring_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_item_slots.";b.h.desc_line4="WARNING:Slots_are_used_up_even";b.h.desc_line5="if_the_Upgrade_fails!";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Misc_Bonus,5";b.h.Amount=60;b.h.Trigger=1;b.h.Cooldown=1;a.h.consumable=b;ma.addNewConsumable("StoneTempestR0",a);a=newl();b=newl();b.h.displayName="Tempest_Ring|Stone_30_PCT";b.h.sellPrice=125;b.h.typeGen="dStone";b.h.ID=7;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_Tempest_Ring_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_item_slots.";b.h.desc_line4="WARNING:Slots_are_used_up_even";b.h.desc_line5="if_the_Upgrade_fails!";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,1.Misc_Bonus,9";b.h.Amount=30;b.h.Trigger=1;b.h.Cooldown=1;a.h.consumable=b;ma.addNewConsumable("StoneTempestR1",a);a=newl();b=newl();b.h.displayName="Tempest_Ring|Stone_10_PCT";b.h.sellPrice=125;b.h.typeGen="dStone";b.h.ID=7;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_Tempest_Ring_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_item_slots.";b.h.desc_line4="WARNING:Slots_are_used_up_even";b.h.desc_line5="if_the_Upgrade_fails!";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,3.Misc_Bonus,25";b.h.Amount=10;b.h.Trigger=1;b.h.Cooldown=1;a.h.consumable=b;ma.addNewConsumable("StoneTempestR2",a);a=newl();b=newl();b.h.displayName="Tempest_Bow|Stone_60_PCT";b.h.sellPrice=125;b.h.typeGen="dStone";b.h.ID=8;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_Tempest_Bow_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_item_slots.";b.h.desc_line4="WARNING:Slots_are_used_up_even";b.h.desc_line5="if_the_Upgrade_fails!";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,3.Misc_Bonus,10";b.h.Amount=60;b.h.Trigger=1;b.h.Cooldown=1;a.h.consumable=b;ma.addNewConsumable("StoneTempestB0",a);a=newl();b=newl();b.h.displayName="Tempest_Bow|Stone_30_PCT";b.h.sellPrice=125;b.h.typeGen="dStone";b.h.ID=8;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_Tempest_Bow_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_item_slots.";b.h.desc_line4="WARNING:Slots_are_used_up_even";b.h.desc_line5="if_the_Upgrade_fails!";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,5.Misc_Bonus,15";b.h.Amount=30;b.h.Trigger=1;b.h.Cooldown=1;a.h.consumable=b;ma.addNewConsumable("StoneTempestB1",a);a=newl();b=newl();b.h.displayName="Tempest_Bow|Stone_10_PCT";b.h.sellPrice=125;b.h.typeGen="dStone";b.h.ID=8;b.h.Type="UPGRADE";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.desc_line1="Drag_onto_Tempest_Bow_to_apply.";b.h.desc_line2="Success_Chance;_*%";b.h.desc_line3="Uses_up_#_item_slots.";b.h.desc_line4="WARNING:Slots_are_used_up_even";b.h.desc_line5="if_the_Upgrade_fails!";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";b.h.Effect="Weapon_Power,12.Misc_Bonus,50";b.h.Amount=10;b.h.Trigger=1;b.h.Cooldown=1;a.h.consumable=b;ma.addNewConsumable("StoneTempestB2",a);a=newl();b=newl();b.h.displayName="Boxing_Gloves_I";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=1;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=55;b.h.Weapon_Power=4;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchA1",a);a=newl();b=newl();b.h.displayName="Boxing_Gloves_II";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=1;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=55;b.h.Weapon_Power=5;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchA2",a);a=newl();b=newl();b.h.displayName="Boxing_Gloves_III";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=1;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=55;b.h.Weapon_Power=6;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchA3",a);a=newl();b=newl();b.h.displayName="Boxing_Gloves_IV";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=1;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=55;b.h.Weapon_Power=7;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchA4",a);a=newl();b=newl();b.h.displayName="Boxing_Gloves_V";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=1;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=55;b.h.Weapon_Power=8;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchA5",a);a=newl();b=newl();b.h.displayName="The_Stingers_I";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=2;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=6;b.h.Reach=55;b.h.Weapon_Power=9;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchB1",a);a=newl();b=newl();b.h.displayName="The_Stingers_II";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=2;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=6;b.h.Reach=55;b.h.Weapon_Power=10;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchB2",a);a=newl();b=newl();b.h.displayName="The_Stingers_III";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=2;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=6;b.h.Reach=55;b.h.Weapon_Power=11;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchB3",a);a=newl();b=newl();b.h.displayName="The_Stingers_IV";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=2;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=6;b.h.Reach=55;b.h.Weapon_Power=12;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchB4",a);a=newl();b=newl();b.h.displayName="The_Stingers_V";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=2;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=6;b.h.Reach=55;b.h.Weapon_Power=13;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchB5",a);a=newl();b=newl();b.h.displayName="Bandage_Wraps_I";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=3;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=7;b.h.Reach=55;b.h.Weapon_Power=14;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchC1",a);a=newl();b=newl();b.h.displayName="Bandage_Wraps_II";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=3;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=7;b.h.Reach=55;b.h.Weapon_Power=15;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchC2",a);a=newl();b=newl();b.h.displayName="Bandage_Wraps_III";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=3;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=7;b.h.Reach=55;b.h.Weapon_Power=17;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchC3",a);a=newl();b=newl();b.h.displayName="Bandage_Wraps_IV";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=3;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=7;b.h.Reach=55;b.h.Weapon_Power=18;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchC4",a);a=newl();b=newl();b.h.displayName="Bandage_Wraps_V";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=3;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=7;b.h.Reach=55;b.h.Weapon_Power=20;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchC5",a);a=newl();b=newl();b.h.displayName="Uninflated_Glove_I";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=8;b.h.Reach=55;b.h.Weapon_Power=22;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchD1",a);a=newl();b=newl();b.h.displayName="Uninflated_Glove_II";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=8;b.h.Reach=55;b.h.Weapon_Power=24;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchD2",a);a=newl();b=newl();b.h.displayName="Uninflated_Glove_III";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=8;b.h.Reach=55;b.h.Weapon_Power=26;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchD3",a);a=newl();b=newl();b.h.displayName="Uninflated_Glove_IV";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=8;b.h.Reach=55;b.h.Weapon_Power=28;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchD4",a);a=newl();b=newl();b.h.displayName="Uninflated_Glove_V";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=8;b.h.Reach=55;b.h.Weapon_Power=30;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchD5",a);a=newl();b=newl();b.h.displayName="Eclectic_Ordeal_I";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=5;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=9;b.h.Reach=55;b.h.Weapon_Power=32;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchE1",a);a=newl();b=newl();b.h.displayName="Eclectic_Ordeal_II";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=5;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=9;b.h.Reach=55;b.h.Weapon_Power=34;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchE2",a);a=newl();b=newl();b.h.displayName="Eclectic_Ordeal_III";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=5;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=9;b.h.Reach=55;b.h.Weapon_Power=36;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchE3",a);a=newl();b=newl();b.h.displayName="Eclectic_Ordeal_IV";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=5;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=9;b.h.Reach=55;b.h.Weapon_Power=38;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchE4",a);a=newl();b=newl();b.h.displayName="Eclectic_Ordeal_V";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=5;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=9;b.h.Reach=55;b.h.Weapon_Power=40;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchE5",a);a=newl();b=newl();b.h.displayName="Eclectic_Ordeal_I";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=5;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=10;b.h.Reach=55;b.h.Weapon_Power=42;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchF1",a);a=newl();b=newl();b.h.displayName="Eclectic_Ordeal_II";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=5;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=10;b.h.Reach=55;b.h.Weapon_Power=44;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchF2",a);a=newl();b=newl();b.h.displayName="Eclectic_Ordeal_III";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=5;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=10;b.h.Reach=55;b.h.Weapon_Power=46;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchF3",a);a=newl();b=newl();b.h.displayName="Eclectic_Ordeal_IV";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=5;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=10;b.h.Reach=55;b.h.Weapon_Power=48;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchF4",a);a=newl();b=newl();b.h.displayName="Eclectic_Ordeal_V";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=5;b.h.Type="FISTICUFF";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.lvReqToEquip=2;b.h.Class="ALL";b.h.Speed=10;b.h.Reach=55;b.h.Weapon_Power=50;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponPunchF5",a);a=newl();b=newl();b.h.displayName="Wooden_Spear_I";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="SPEAR";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=70;b.h.Weapon_Power=4;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordA1",a);a=newl();b=newl();b.h.displayName="Wooden_Spear_II";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="SPEAR";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=70;b.h.Weapon_Power=5;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordA2",a);a=newl();b=newl();b.h.displayName="Wooden_Spear_III";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="SPEAR";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=70;b.h.Weapon_Power=6;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordA3",a);a=newl();b=newl();b.h.displayName="Wooden_Spear_IV";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="SPEAR";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=70;b.h.Weapon_Power=7;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordA4",a);a=newl();b=newl();b.h.displayName="Wooden_Spear_V";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="SPEAR";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=70;b.h.Weapon_Power=8;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordA5",a);a=newl();b=newl();b.h.displayName="Steel_Axe_I";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=6;b.h.Type="SPEAR";b.h.lvReqToCraft="20";a.h.common=b;b=newl();b.h.lvReqToEquip=11;b.h.Class="WARRIOR";b.h.Speed=5;b.h.Reach=62;b.h.Weapon_Power=9;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordB1",a);a=newl();b=newl();b.h.displayName="Steel_Axe_II";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=6;b.h.Type="SPEAR";b.h.lvReqToCraft="20";a.h.common=b;b=newl();b.h.lvReqToEquip=11;b.h.Class="WARRIOR";b.h.Speed=5;b.h.Reach=62;b.h.Weapon_Power=10;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordB2",a);a=newl();b=newl();b.h.displayName="Steel_Axe_III";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=6;b.h.Type="SPEAR";b.h.lvReqToCraft="20";a.h.common=b;b=newl();b.h.lvReqToEquip=11;b.h.Class="WARRIOR";b.h.Speed=5;b.h.Reach=62;b.h.Weapon_Power=11;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordB3",a);a=newl();b=newl();b.h.displayName="Steel_Axe_IV";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=6;b.h.Type="SPEAR";b.h.lvReqToCraft="20";a.h.common=b;b=newl();b.h.lvReqToEquip=11;b.h.Class="WARRIOR";b.h.Speed=5;b.h.Reach=62;b.h.Weapon_Power=12;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordB4",a);a=newl();b=newl();b.h.displayName="Steel_Axe_V";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=6;b.h.Type="SPEAR";b.h.lvReqToCraft="20";a.h.common=b;b=newl();b.h.lvReqToEquip=11;b.h.Class="WARRIOR";b.h.Speed=5;b.h.Reach=62;b.h.Weapon_Power=13;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordB5",a);a=newl();b=newl();b.h.displayName="Royal_Bayonet_I";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=3;b.h.Type="SPEAR";b.h.lvReqToCraft="25";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="WARRIOR";b.h.Speed=5;b.h.Reach=95;b.h.Weapon_Power=14;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordC1",a);a=newl();b=newl();b.h.displayName="Royal_Bayonet_II";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=3;b.h.Type="SPEAR";b.h.lvReqToCraft="25";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="WARRIOR";b.h.Speed=5;b.h.Reach=95;b.h.Weapon_Power=15;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordC2",a);a=newl();b=newl();b.h.displayName="Royal_Bayonet_III";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=3;b.h.Type="SPEAR";b.h.lvReqToCraft="25";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="WARRIOR";b.h.Speed=5;b.h.Reach=95;b.h.Weapon_Power=17;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordC3",a);a=newl();b=newl();b.h.displayName="Royal_Bayonet_IV";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=3;b.h.Type="SPEAR";b.h.lvReqToCraft="25";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="WARRIOR";b.h.Speed=5;b.h.Reach=95;b.h.Weapon_Power=18;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordC4",a);a=newl();b=newl();b.h.displayName="Royal_Bayonet_V";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=3;b.h.Type="SPEAR";b.h.lvReqToCraft="25";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="WARRIOR";b.h.Speed=5;b.h.Reach=95;b.h.Weapon_Power=20;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordC5",a);a=newl();b=newl();b.h.displayName="Enforced_Slasher_I";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=7;b.h.Type="SPEAR";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="WARRIOR";b.h.Speed=5;b.h.Reach=80;b.h.Weapon_Power=22;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordD1",a);a=newl();b=newl();b.h.displayName="Enforced_Slasher_II";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=7;b.h.Type="SPEAR";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="WARRIOR";b.h.Speed=5;b.h.Reach=80;b.h.Weapon_Power=24;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordD2",a);a=newl();b=newl();b.h.displayName="Enforced_Slasher_III";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=7;b.h.Type="SPEAR";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="WARRIOR";b.h.Speed=5;b.h.Reach=80;b.h.Weapon_Power=26;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordD3",a);a=newl();b=newl();b.h.displayName="Enforced_Slasher_IV";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=7;b.h.Type="SPEAR";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="WARRIOR";b.h.Speed=5;b.h.Reach=80;b.h.Weapon_Power=28;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordD4",a);a=newl();b=newl();b.h.displayName="Enforced_Slasher_V";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=7;b.h.Type="SPEAR";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="WARRIOR";b.h.Speed=5;b.h.Reach=80;b.h.Weapon_Power=30;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordD5",a);a=newl();b=newl();b.h.displayName="The_Ice_Breaker_I";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=8;b.h.Type="SPEAR";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="WARRIOR";b.h.Speed=5;b.h.Reach=76;b.h.Weapon_Power=32;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordE1",a);a=newl();b=newl();b.h.displayName="The_Ice_Breaker_II";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=8;b.h.Type="SPEAR";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="WARRIOR";b.h.Speed=5;b.h.Reach=76;b.h.Weapon_Power=34;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordE2",a);a=newl();b=newl();b.h.displayName="The_Ice_Breaker_III";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=8;b.h.Type="SPEAR";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="WARRIOR";b.h.Speed=5;b.h.Reach=76;b.h.Weapon_Power=36;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordE3",a);a=newl();b=newl();b.h.displayName="The_Ice_Breaker_IV";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=8;b.h.Type="SPEAR";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="WARRIOR";b.h.Speed=5;b.h.Reach=76;b.h.Weapon_Power=38;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordE4",a);a=newl();b=newl();b.h.displayName="The_Ice_Breaker_V";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=8;b.h.Type="SPEAR";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="WARRIOR";b.h.Speed=5;b.h.Reach=76;b.h.Weapon_Power=40;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordE5",a);a=newl();b=newl();b.h.displayName="Deuscythe_I";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=9;b.h.Type="SPEAR";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="WARRIOR";b.h.Speed=6;b.h.Reach=88;b.h.Weapon_Power=42;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordF1",a);a=newl();b=newl();b.h.displayName="Deuscythe_II";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=9;b.h.Type="SPEAR";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="WARRIOR";b.h.Speed=6;b.h.Reach=88;b.h.Weapon_Power=44;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordF2",a);a=newl();b=newl();b.h.displayName="Deuscythe_III";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=9;b.h.Type="SPEAR";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="WARRIOR";b.h.Speed=6;b.h.Reach=88;b.h.Weapon_Power=46;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordF3",a);a=newl();b=newl();b.h.displayName="Deuscythe_IV";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=9;b.h.Type="SPEAR";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="WARRIOR";b.h.Speed=6;b.h.Reach=88;b.h.Weapon_Power=48;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordF4",a);a=newl();b=newl();b.h.displayName="Deuscythe_V";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=9;b.h.Type="SPEAR";b.h.lvReqToCraft="50";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="WARRIOR";b.h.Speed=6;b.h.Reach=88;b.h.Weapon_Power=50;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSwordF5",a);a=newl();b=newl();b.h.displayName="Wooden_Bow_I";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=1;b.h.Type="BOW";b.h.lvReqToCraft="4";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=150;b.h.Weapon_Power=4;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowA1",a);a=newl();b=newl();b.h.displayName="Wooden_Bow_II";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=1;b.h.Type="BOW";b.h.lvReqToCraft="4";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=150;b.h.Weapon_Power=5;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowA2",a);a=newl();b=newl();b.h.displayName="Wooden_Bow_III";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=1;b.h.Type="BOW";b.h.lvReqToCraft="4";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=150;b.h.Weapon_Power=6;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowA3",a);a=newl();b=newl();b.h.displayName="Wooden_Bow_IV";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=1;b.h.Type="BOW";b.h.lvReqToCraft="4";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=150;b.h.Weapon_Power=7;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowA4",a);a=newl();b=newl();b.h.displayName="Wooden_Bow_V";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=1;b.h.Type="BOW";b.h.lvReqToCraft="4";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=150;b.h.Weapon_Power=8;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowA5",a);a=newl();b=newl();b.h.displayName="Birch_Longbow_I";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=12;b.h.Class="ARCHER";b.h.Speed=6;b.h.Reach=170;b.h.Weapon_Power=9;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowB1",a);a=newl();b=newl();b.h.displayName="Birch_Longbow_II";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=12;b.h.Class="ARCHER";b.h.Speed=6;b.h.Reach=170;b.h.Weapon_Power=10;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowB2",a);a=newl();b=newl();b.h.displayName="Birch_Longbow_III";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=12;b.h.Class="ARCHER";b.h.Speed=6;b.h.Reach=170;b.h.Weapon_Power=11;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowB3",a);a=newl();b=newl();b.h.displayName="Birch_Longbow_IV";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=12;b.h.Class="ARCHER";b.h.Speed=6;b.h.Reach=170;b.h.Weapon_Power=12;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowB4",a);a=newl();b=newl();b.h.displayName="Birch_Longbow_V";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=12;b.h.Class="ARCHER";b.h.Speed=6;b.h.Reach=170;b.h.Weapon_Power=13;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowB5",a);a=newl();b=newl();b.h.displayName="Spiked_Menace_I";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=5;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ARCHER";b.h.Speed=6;b.h.Reach=175;b.h.Weapon_Power=14;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowC1",a);a=newl();b=newl();b.h.displayName="Spiked_Menace_II";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=5;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ARCHER";b.h.Speed=6;b.h.Reach=175;b.h.Weapon_Power=15;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowC2",a);a=newl();b=newl();b.h.displayName="Spiked_Menace_III";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=5;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ARCHER";b.h.Speed=6;b.h.Reach=175;b.h.Weapon_Power=17;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowC3",a);a=newl();b=newl();b.h.displayName="Spiked_Menace_IV";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=5;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ARCHER";b.h.Speed=6;b.h.Reach=175;b.h.Weapon_Power=18;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowC4",a);a=newl();b=newl();b.h.displayName="Spiked_Menace_V";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=5;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ARCHER";b.h.Speed=6;b.h.Reach=175;b.h.Weapon_Power=20;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowC5",a);a=newl();b=newl();b.h.displayName="Pharoah_Bow_I";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=6;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ARCHER";b.h.Speed=6;b.h.Reach=200;b.h.Weapon_Power=22;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowD1",a);a=newl();b=newl();b.h.displayName="Pharoah_Bow_II";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=6;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ARCHER";b.h.Speed=6;b.h.Reach=200;b.h.Weapon_Power=24;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowD2",a);a=newl();b=newl();b.h.displayName="Pharoah_Bow_III";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=6;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ARCHER";b.h.Speed=6;b.h.Reach=200;b.h.Weapon_Power=26;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowD3",a);a=newl();b=newl();b.h.displayName="Pharoah_Bow_IV";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=6;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ARCHER";b.h.Speed=6;b.h.Reach=200;b.h.Weapon_Power=28;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowD4",a);a=newl();b=newl();b.h.displayName="Pharoah_Bow_V";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=6;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ARCHER";b.h.Speed=6;b.h.Reach=200;b.h.Weapon_Power=30;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowD5",a);a=newl();b=newl();b.h.displayName="Blizzard_Bow_I";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=7;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ARCHER";b.h.Speed=6;b.h.Reach=205;b.h.Weapon_Power=32;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowE1",a);a=newl();b=newl();b.h.displayName="Blizzard_Bow_II";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=7;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ARCHER";b.h.Speed=6;b.h.Reach=205;b.h.Weapon_Power=34;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowE2",a);a=newl();b=newl();b.h.displayName="Blizzard_Bow_III";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=7;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ARCHER";b.h.Speed=6;b.h.Reach=205;b.h.Weapon_Power=36;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowE3",a);a=newl();b=newl();b.h.displayName="Blizzard_Bow_IV";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=7;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ARCHER";b.h.Speed=6;b.h.Reach=205;b.h.Weapon_Power=38;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowE4",a);a=newl();b=newl();b.h.displayName="Blizzard_Bow_V";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=7;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ARCHER";b.h.Speed=6;b.h.Reach=205;b.h.Weapon_Power=40;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowE5",a);a=newl();b=newl();b.h.displayName="Blackhole_Bow_I";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=2;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ARCHER";b.h.Speed=7;b.h.Reach=230;b.h.Weapon_Power=42;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowF1",a);a=newl();b=newl();b.h.displayName="Blackhole_Bow_II";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=2;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ARCHER";b.h.Speed=7;b.h.Reach=230;b.h.Weapon_Power=44;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowF2",a);a=newl();b=newl();b.h.displayName="Blackhole_Bow_III";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=2;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ARCHER";b.h.Speed=7;b.h.Reach=230;b.h.Weapon_Power=46;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowF3",a);a=newl();b=newl();b.h.displayName="Blackhole_Bow_IV";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=2;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ARCHER";b.h.Speed=7;b.h.Reach=230;b.h.Weapon_Power=48;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowF4",a);a=newl();b=newl();b.h.displayName="Blackhole_Bow_V";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=2;b.h.Type="BOW";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="ARCHER";b.h.Speed=7;b.h.Reach=230;b.h.Weapon_Power=50;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBowF5",a);a=newl();b=newl();b.h.displayName="Gnarled_Wand_I";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=3;b.h.Type="WAND";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=115;b.h.Weapon_Power=4;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandA1",a);a=newl();b=newl();b.h.displayName="Gnarled_Wand_II";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=3;b.h.Type="WAND";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=115;b.h.Weapon_Power=5;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandA2",a);a=newl();b=newl();b.h.displayName="Gnarled_Wand_III";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=3;b.h.Type="WAND";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=115;b.h.Weapon_Power=6;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandA3",a);a=newl();b=newl();b.h.displayName="Gnarled_Wand_IV";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=3;b.h.Type="WAND";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=115;b.h.Weapon_Power=7;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandA4",a);a=newl();b=newl();b.h.displayName="Gnarled_Wand_V";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=3;b.h.Type="WAND";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=115;b.h.Weapon_Power=8;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandA5",a);a=newl();b=newl();b.h.displayName="Quarterstaff_I";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=1;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=12;b.h.Class="MAGE";b.h.Speed=6;b.h.Reach=120;b.h.Weapon_Power=9;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandB1",a);a=newl();b=newl();b.h.displayName="Quarterstaff_II";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=1;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=12;b.h.Class="MAGE";b.h.Speed=6;b.h.Reach=120;b.h.Weapon_Power=10;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandB2",a);a=newl();b=newl();b.h.displayName="Quarterstaff_III";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=1;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=12;b.h.Class="MAGE";b.h.Speed=6;b.h.Reach=120;b.h.Weapon_Power=11;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandB3",a);a=newl();b=newl();b.h.displayName="Quarterstaff_IV";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=1;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=12;b.h.Class="MAGE";b.h.Speed=6;b.h.Reach=120;b.h.Weapon_Power=12;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandB4",a);a=newl();b=newl();b.h.displayName="Quarterstaff_V";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=1;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=12;b.h.Class="MAGE";b.h.Speed=6;b.h.Reach=120;b.h.Weapon_Power=13;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandB5",a);a=newl();b=newl();b.h.displayName="Starlight_I";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=5;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="MAGE";b.h.Speed=6;b.h.Reach=145;b.h.Weapon_Power=14;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandC1",a);a=newl();b=newl();b.h.displayName="Starlight_II";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=5;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="MAGE";b.h.Speed=6;b.h.Reach=145;b.h.Weapon_Power=15;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandC2",a);a=newl();b=newl();b.h.displayName="Starlight_III";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=5;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="MAGE";b.h.Speed=6;b.h.Reach=145;b.h.Weapon_Power=17;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandC3",a);a=newl();b=newl();b.h.displayName="Starlight_IV";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=5;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="MAGE";b.h.Speed=6;b.h.Reach=145;b.h.Weapon_Power=18;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandC4",a);a=newl();b=newl();b.h.displayName="Starlight_V";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=5;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="MAGE";b.h.Speed=6;b.h.Reach=145;b.h.Weapon_Power=20;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandC5",a);a=newl();b=newl();b.h.displayName="Crows_Nest_I";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="MAGE";b.h.Speed=6;b.h.Reach=160;b.h.Weapon_Power=22;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandD1",a);a=newl();b=newl();b.h.displayName="Crows_Nest_II";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="MAGE";b.h.Speed=6;b.h.Reach=160;b.h.Weapon_Power=24;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandD2",a);a=newl();b=newl();b.h.displayName="Crows_Nest_III";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="MAGE";b.h.Speed=6;b.h.Reach=160;b.h.Weapon_Power=26;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandD3",a);a=newl();b=newl();b.h.displayName="Crows_Nest_IV";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="MAGE";b.h.Speed=6;b.h.Reach=160;b.h.Weapon_Power=28;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandD4",a);a=newl();b=newl();b.h.displayName="Crows_Nest_V";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="MAGE";b.h.Speed=6;b.h.Reach=160;b.h.Weapon_Power=30;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandD5",a);a=newl();b=newl();b.h.displayName="Spriggly_Storm_I";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=2;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="MAGE";b.h.Speed=7;b.h.Reach=155;b.h.Weapon_Power=32;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandE1",a);a=newl();b=newl();b.h.displayName="Spriggly_Storm_II";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=2;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="MAGE";b.h.Speed=7;b.h.Reach=155;b.h.Weapon_Power=34;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandE2",a);a=newl();b=newl();b.h.displayName="Spriggly_Storm_III";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=2;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="MAGE";b.h.Speed=7;b.h.Reach=155;b.h.Weapon_Power=36;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandE3",a);a=newl();b=newl();b.h.displayName="Spriggly_Storm_IV";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=2;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="MAGE";b.h.Speed=7;b.h.Reach=155;b.h.Weapon_Power=38;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandE4",a);a=newl();b=newl();b.h.displayName="Spriggly_Storm_V";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=2;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="MAGE";b.h.Speed=7;b.h.Reach=155;b.h.Weapon_Power=40;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandE5",a);a=newl();b=newl();b.h.displayName="Grey_Gatsby_I";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=6;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="MAGE";b.h.Speed=7;b.h.Reach=170;b.h.Weapon_Power=42;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandF1",a);a=newl();b=newl();b.h.displayName="Grey_Gatsby_II";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=6;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="MAGE";b.h.Speed=7;b.h.Reach=170;b.h.Weapon_Power=44;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandF2",a);a=newl();b=newl();b.h.displayName="Grey_Gatsby_III";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=6;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="MAGE";b.h.Speed=7;b.h.Reach=170;b.h.Weapon_Power=46;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandF3",a);a=newl();b=newl();b.h.displayName="Grey_Gatsby_IV";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=6;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="MAGE";b.h.Speed=7;b.h.Reach=170;b.h.Weapon_Power=48;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandF4",a);a=newl();b=newl();b.h.displayName="Grey_Gatsby_V";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=6;b.h.Type="WAND";b.h.lvReqToCraft="22";a.h.common=b;b=newl();b.h.lvReqToEquip=30;b.h.Class="MAGE";b.h.Speed=7;b.h.Reach=170;b.h.Weapon_Power=50;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWandF5",a);a=newl();b=newl();b.h.displayName="Wooden_Spear";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="SPEAR";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=70;b.h.Weapon_Power=7;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponSword1",a);a=newl();b=newl();b.h.displayName="Wooden_Spear";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="SPEAR";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=70;b.h.Weapon_Power=7;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponWand1",a);a=newl();b=newl();b.h.displayName="Wooden_Spear";b.h.sellPrice=1;b.h.typeGen="aWeapon";b.h.ID=4;b.h.Type="SPEAR";b.h.lvReqToCraft="3";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=5;b.h.Reach=70;b.h.Weapon_Power=7;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungWeaponBow1",a);a=newl();b=newl();b.h.displayName="Field_Brim";b.h.sellPrice=175;b.h.typeGen="aHelmet";b.h.ID=67;b.h.Type="HELMET";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentHats0",a);a=newl();b=newl();b.h.displayName="Grassy_Brim";b.h.sellPrice=175;b.h.typeGen="aHelmet";b.h.ID=68;b.h.Type="HELMET";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentHats1",a);a=newl();b=newl();b.h.displayName="Winter_Brim";b.h.sellPrice=175;b.h.typeGen="aHelmet";b.h.ID=69;b.h.Type="HELMET";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentHats2",a);a=newl();b=newl();b.h.displayName="Maize_Brim";b.h.sellPrice=175;b.h.typeGen="aHelmet";b.h.ID=70;b.h.Type="HELMET";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentHats3",a);a=newl();b=newl();b.h.displayName="The_Crow_Perch";b.h.sellPrice=175;b.h.typeGen="aHelmet";b.h.ID=71;b.h.Type="HELMET";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentHats4",a);a=newl();b=newl();b.h.displayName="White_Tee";b.h.sellPrice=175;b.h.typeGen="aShirt";b.h.ID=4;b.h.Type="SHIRT";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=1;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentShirt0",a);a=newl();b=newl();b.h.displayName="Green_Shirt";b.h.sellPrice=175;b.h.typeGen="aShirt";b.h.ID=4;b.h.Type="SHIRT";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=2;b.h.LUK=0;b.h.Defence=2;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentShirt1",a);a=newl();b=newl();b.h.displayName="Blue_Stripe_Tee";b.h.sellPrice=175;b.h.typeGen="aShirt";b.h.ID=4;b.h.Type="SHIRT";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=4;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentShirt2",a);a=newl();b=newl();b.h.displayName="Purple_Diagonal|Striped_Shirt";b.h.sellPrice=175;b.h.typeGen="aShirt";b.h.ID=4;b.h.Type="SHIRT";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=8;b.h.LUK=0;b.h.Defence=4;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentShirt3",a);a=newl();b=newl();b.h.displayName="Solar_Shirt";b.h.sellPrice=175;b.h.typeGen="aShirt";b.h.ID=4;b.h.Type="SHIRT";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=15;b.h.LUK=0;b.h.Defence=6;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentShirt4",a);a=newl();b=newl();b.h.displayName="Boring_Jeans";b.h.sellPrice=175;b.h.typeGen="aPants";b.h.ID=4;b.h.Type="PANTS";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentPants0",a);a=newl();b=newl();b.h.displayName="Camo_Jeans";b.h.sellPrice=175;b.h.typeGen="aPants";b.h.ID=4;b.h.Type="PANTS";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=2;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentPants1",a);a=newl();b=newl();b.h.displayName="Sandblasted_Jeans";b.h.sellPrice=175;b.h.typeGen="aPants";b.h.ID=4;b.h.Type="PANTS";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=6;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=3;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentPants2",a);a=newl();b=newl();b.h.displayName="Royale_Jeans";b.h.sellPrice=175;b.h.typeGen="aPants";b.h.ID=4;b.h.Type="PANTS";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=12;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=4;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentPants3",a);a=newl();b=newl();b.h.displayName="Pop_Lock_and|Drop_Jeans";b.h.sellPrice=175;b.h.typeGen="aPants";b.h.ID=4;b.h.Type="PANTS";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=20;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=6;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentPants4",a);a=newl();b=newl();b.h.displayName="Dull_Flops";b.h.sellPrice=175;b.h.typeGen="aShoes";b.h.ID=4;b.h.Type="SHOES";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=3;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentShoes0",a);a=newl();b=newl();b.h.displayName="Flap_Flops";b.h.sellPrice=175;b.h.typeGen="aShoes";b.h.ID=4;b.h.Type="SHOES";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=3;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentShoes1",a);a=newl();b=newl();b.h.displayName="Floop_Floops";b.h.sellPrice=175;b.h.typeGen="aShoes";b.h.ID=4;b.h.Type="SHOES";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=3;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentShoes2",a);a=newl();b=newl();b.h.displayName="Fluppo_Wuppos";b.h.sellPrice=175;b.h.typeGen="aShoes";b.h.ID=4;b.h.Type="SHOES";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=3;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentShoes3",a);a=newl();b=newl();b.h.displayName="Flipper_Snapper|Slipper_Floppers";b.h.sellPrice=175;b.h.typeGen="aShoes";b.h.ID=4;b.h.Type="SHOES";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=3;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentShoes4",a);a=newl();b=newl();b.h.displayName="Quartz_Pendant";b.h.sellPrice=175;b.h.typeGen="aPendant";b.h.ID=4;b.h.Type="PENDANT";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=5;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentPendant0",a);a=newl();b=newl();b.h.displayName="Shruck_Stone|Pendant";b.h.sellPrice=175;b.h.typeGen="aPendant";b.h.ID=4;b.h.Type="PENDANT";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=5;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentPendant1",a);a=newl();b=newl();b.h.displayName="Skydive_Pendant";b.h.sellPrice=175;b.h.typeGen="aPendant";b.h.ID=4;b.h.Type="PENDANT";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=5;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentPendant2",a);a=newl();b=newl();b.h.displayName="Maegatia_Pendant";b.h.sellPrice=175;b.h.typeGen="aPendant";b.h.ID=4;b.h.Type="PENDANT";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=5;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentPendant3",a);a=newl();b=newl();b.h.displayName="Lava_Diamond|Double_Pendant";b.h.sellPrice=175;b.h.typeGen="aPendant";b.h.ID=4;b.h.Type="PENDANT";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=5;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentPendant4",a);a=newl();b=newl();b.h.displayName="Silver_Ring";b.h.sellPrice=175;b.h.typeGen="aRing";b.h.ID=4;b.h.Type="RING";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=2;b.h.WIS=2;b.h.LUK=2;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentRings0",a);a=newl();b=newl();b.h.displayName="Booger_Ring";b.h.sellPrice=175;b.h.typeGen="aRing";b.h.ID=4;b.h.Type="RING";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=2;b.h.WIS=2;b.h.LUK=2;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentRings1",a);a=newl();b=newl();b.h.displayName="Cold_Fusion|Rock_Ring";b.h.sellPrice=175;b.h.typeGen="aRing";b.h.ID=4;b.h.Type="RING";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=2;b.h.WIS=2;b.h.LUK=2;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentRings2",a);a=newl();b=newl();b.h.displayName="Creeper_Peeper|Ring";b.h.sellPrice=175;b.h.typeGen="aRing";b.h.ID=4;b.h.Type="RING";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=2;b.h.WIS=2;b.h.LUK=2;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentRings3",a);a=newl();b=newl();b.h.displayName="Jewels_of_the|Setting_Sun";b.h.sellPrice=175;b.h.typeGen="aRing";b.h.ID=4;b.h.Type="RING";b.h.lvReqToCraft="DUNGEON";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=2;b.h.WIS=2;b.h.LUK=2;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;ma.addNewEquip("DungEquipmentRings4",a);a=newl();b=newl();b.h.displayName="Infinite_Forge";b.h.sellPrice=1;b.h.typeGen="aError";b.h.ID=0;b.h.Type="ERROR";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("GemQ1",a);a=newl();b=newl();b.h.displayName="Infinite_Forge";b.h.sellPrice=1;b.h.typeGen="aError";b.h.ID=0;b.h.Type="ERROR";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("GemQ2",a);a=newl();b=newl();b.h.displayName="Infinite_Forge";b.h.sellPrice=1;b.h.typeGen="aError";b.h.ID=0;b.h.Type="ERROR";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("GemQ3",a);a=newl();b=newl();b.h.displayName="Infinite_Forge";b.h.sellPrice=1;b.h.typeGen="aError";b.h.ID=0;b.h.Type="ERROR";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("GemQ4",a);a=newl();b=newl();b.h.displayName="Infinite_Forge";b.h.sellPrice=1;b.h.typeGen="aError";b.h.ID=0;b.h.Type="ERROR";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("GemQ5",a);a=newl();b=newl();b.h.displayName="Infinite_Forge";b.h.sellPrice=1;b.h.typeGen="aError";b.h.ID=0;b.h.Type="ERROR";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("GemQ6",a);a=newl();b=newl();b.h.displayName="Infinite_Forge";b.h.sellPrice=1;b.h.typeGen="aError";b.h.ID=0;b.h.Type="ERROR";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("GemQ7",a);a=newl();b=newl();b.h.displayName="Infinite_Forge";b.h.sellPrice=1;b.h.typeGen="aError";b.h.ID=0;b.h.Type="ERROR";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("GemQ8",a);a=newl();b=newl();b.h.displayName="Infinite_Forge";b.h.sellPrice=1;b.h.typeGen="aError";b.h.ID=0;b.h.Type="ERROR";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("GemQ9",a);a=newl();b=newl();b.h.displayName="Infinite_Forge";b.h.sellPrice=1;b.h.typeGen="aError";b.h.ID=0;b.h.Type="ERROR";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("GemQ10",a);a=newl();b=newl();b.h.displayName="Infinite_Forge";b.h.sellPrice=1;b.h.typeGen="aError";b.h.ID=0;b.h.Type="ERROR";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("GemQ11",a);a=newl();b=newl();b.h.displayName="Infinite_Forge";b.h.sellPrice=1;b.h.typeGen="aError";b.h.ID=0;b.h.Type="ERROR";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("GemQ12",a);a=newl();b=newl();b.h.displayName="Infinite_Forge";b.h.sellPrice=1;b.h.typeGen="aError";b.h.ID=0;b.h.Type="ERROR";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("GemQ13",a);a=newl();b=newl();b.h.displayName="Infinite_Forge";b.h.sellPrice=1;b.h.typeGen="aError";b.h.ID=0;b.h.Type="ERROR";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("GemQ14",a);a=newl();b=newl();b.h.displayName="Infinite_Forge";b.h.sellPrice=1;b.h.typeGen="aError";b.h.ID=0;b.h.Type="ERROR";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("GemQ15",a);a=newl();b=newl();b.h.displayName="Infinite_Forge";b.h.sellPrice=1;b.h.typeGen="aError";b.h.ID=0;b.h.Type="ERROR";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("GemQ16",a);a=newl();b=newl();b.h.displayName="Infinite_Forge";b.h.sellPrice=1;b.h.typeGen="aError";b.h.ID=0;b.h.Type="ERROR";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("GemQ17",a);a=newl();b=newl();b.h.displayName="Infinite_Forge";b.h.sellPrice=1;b.h.typeGen="aError";b.h.ID=0;b.h.Type="ERROR";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("GemP1",a);a=newl();b=newl();b.h.displayName="Funny_2hr_Fishy";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="USABLE";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_gain_2_hours_of_fish_gains_at_Poppy_The_Kangaroo_Mouse's_Fish_Pond!_You_should_wait_until_you_know_what_that_is_before_using_this...";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;ma.addNewQuest("GemP36",a);a=newl();b=newl();b.h.displayName="Funny_2hr_Feather";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="USABLE";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_generate_2_hours_of_Feathers_at_Orion_the_Horned_Owl!_Go_check_him_out_in_your_Codex!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;ma.addNewQuest("GemP37",a);a=newl();b=newl();b.h.displayName="Funny_2hr_Slice";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="USABLE";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_generate_2_hours_of_Meat_Slices_for_Bubba's_Arctic_Market,_unlocked_in_World_3_and_accessed_via_Orion_and_Poppy!_Sadly,_this_will_reset_Bubba's_current_happiness_meter.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;ma.addNewQuest("Quest112",a);a=newl();b=newl();b.h.displayName="Quality_Obol|Stack";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="OBOL_STACK";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_and_3_obols_will_drop_at_your_feet!_YOU_MUST_BE_IN_WORLD_2_TOWN_TO_USE_THIS!_This_way_you_can_trash_other_obols_incase_you're_out_of_space!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;ma.addNewQuest("GemP9",a);a=newl();b=newl();b.h.displayName="Marvelous_Obol|Stack";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="OBOL_STACK";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_and_3_obols_will_drop_at_your_feet!_YOU_MUST_BE_IN_WORLD_2_TOWN_TO_USE_THIS!_This_way_you_can_trash_other_obols_incase_you're_out_of_space!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;ma.addNewQuest("GemP10",a);a=newl();b=newl();b.h.displayName="Marvelous_Obol|Stack";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="OBOL_STACK";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_and_3_obols_will_drop_at_your_feet!_YOU_MUST_BE_IN_WORLD_2_TOWN_TO_USE_THIS!_This_way_you_can_trash_other_obols_incase_you're_out_of_space!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;ma.addNewQuest("GemP11",a);a=newl();b=newl();b.h.displayName="Marvelous_Obol|Stack";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="OBOL_STACK";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_and_3_obols_will_drop_at_your_feet!_YOU_MUST_BE_IN_WORLD_2_TOWN_TO_USE_THIS!_This_way_you_can_trash_other_obols_incase_you're_out_of_space!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;ma.addNewQuest("GemP12",a);a=newl();b=newl();b.h.displayName="Marvelous_Obol|Stack";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="OBOL_STACK";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_and_3_obols_will_drop_at_your_feet!_YOU_MUST_BE_IN_WORLD_2_TOWN_TO_USE_THIS!_This_way_you_can_trash_other_obols_incase_you're_out_of_space!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;ma.addNewQuest("GemP13",a);a=newl();b=newl();b.h.displayName="Marvelous_Obol|Stack";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="OBOL_STACK";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_and_3_obols_will_drop_at_your_feet!_YOU_MUST_BE_IN_WORLD_2_TOWN_TO_USE_THIS!_This_way_you_can_trash_other_obols_incase_you're_out_of_space!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;ma.addNewQuest("GemP14",a);a=newl();b=newl();b.h.displayName="Marvelous_Obol|Stack";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="OBOL_STACK";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_and_3_obols_will_drop_at_your_feet!_YOU_MUST_BE_IN_WORLD_2_TOWN_TO_USE_THIS!_This_way_you_can_trash_other_obols_incase_you're_out_of_space!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;ma.addNewQuest("GemP14",a);a=newl();b=newl();b.h.displayName="Marvelous_Obol|Stack";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="OBOL_STACK";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_and_3_obols_will_drop_at_your_feet!_YOU_MUST_BE_IN_WORLD_2_TOWN_TO_USE_THIS!_This_way_you_can_trash_other_obols_incase_you're_out_of_space!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;ma.addNewQuest("GemP15",a);a=newl();b=newl();b.h.displayName="Dungeon_Loot_Dice";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="LOOT_DICE";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_to_get_a_loot_roll!_Use_it_anywhere_you_like!_IMPORTANT:_You_need_to_be_Dungeon_Rank_10{_to_get_Tier_2_Keychains,_and_Rank_20{_to_get_Tier_3_keychains.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;ma.addNewQuest("GemP16",a);a=newl();b=newl();b.h.displayName="Bossius_Obol|Stack";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="OBOL_STACK";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_and_1_boss_obol_will_drop_at_your_feet!_YOU_MUST_BE_IN_WORLD_2_TOWN_TO_USE_THIS!_This_way_you_can_trash_other_obols_incase_you're_out_of_space!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;ma.addNewQuest("GemP19",a);a=newl();b=newl();b.h.displayName="Infinite_Forge";b.h.sellPrice=1;b.h.typeGen="aError";b.h.ID=0;b.h.Type="ERROR";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("GemP20",a);a=newl();b=newl();b.h.displayName="Infinite_Forge";b.h.sellPrice=1;b.h.typeGen="aError";b.h.ID=0;b.h.Type="ERROR";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("GemP21",a);a=newl();b=newl();b.h.displayName="Infinite_Forge";b.h.sellPrice=1;b.h.typeGen="aError";b.h.ID=0;b.h.Type="ERROR";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("GemP22",a);a=newl();b=newl();b.h.displayName="Infinite_Forge";b.h.sellPrice=1;b.h.typeGen="aError";b.h.ID=0;b.h.Type="ERROR";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("GemP23",a);a=newl();b=newl();b.h.displayName="Infinite_Forge";b.h.sellPrice=1;b.h.typeGen="aError";b.h.ID=0;b.h.Type="ERROR";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;ma.addNewEquip("GemP24",a);a=newl();b=newl();b.h.displayName="Hyper_Obol_Stack";b.h.sellPrice=1;b.h.typeGen="dQuest";b.h.ID=1;b.h.Type="OBOL_STACK";b.h.lvReqToCraft="88";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_and_1_hyper_obol_will_drop_at_your_feet!_YOU_MUST_BE_IN_WORLD_2_TOWN_TO_USE_THIS!_This_way_you_can_trash_other_obols_incase_you're_out_of_space!";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;ma.addNewQuest("GemP25",a);a=newl();b=newl();b.h.displayName="Sand_of_Time";b.h.sellPrice=100;b.h.typeGen="dQuest";b.h.ID=0;b.h.Type="TIME_SAND";b.h.lvReqToCraft="15";a.h.common=b;b=newl();b.h.desc_line1="Hold_down_instantly_gain_6_Hours_of_Sneaking_Progress!_Applies_to_all_your_ninja_twins,_so_it_doesn't_matter_who_uses_this.";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;ma.addNewQuest("GemP30",a);""" # fmt: skip # noqa -# `scripts.ItemDefinitions6` in source. Last updated in v2.503 +# `scripts.ItemDefinitions6` in source. Last updated in v2.505 # paste body of the `make` function (excluding outer curly braces) # remove all spaces and newlines -script_item_definitions_6 = """N.itemDefs=newl();vara=newl(),b=newl();b.h.displayName="King_of_Food";b.h.sellPrice=1e4;b.h.typeGen="aTrophy";b.h.ID=1;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=65;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=25;b.h.UQ1txt="%_FOOD_EFFECT";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("Trophy1",a);a=newl();b=newl();b.h.displayName="Lucky_Lad";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=2;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=7;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=7;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("Trophy2",a);a=newl();b=newl();b.h.displayName="Club_Member";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=3;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="BEGINNER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=5;b.h.Defence=5;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("Trophy3",a);a=newl();b=newl();b.h.displayName="I_Made_This_Game";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=4;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_PLAYER_HEIGHT";b.h.UQ1val=100;b.h.UQ2txt="%_RED_COLOURING";b.h.UQ2val=42;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("Trophy4",a);a=newl();b=newl();b.h.displayName="Dice_Dynamo";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=5;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=5;b.h.Defence=0;b.h.UQ1txt="%_LUK";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("Trophy5",a);a=newl();b=newl();b.h.displayName="Blunder_Hero";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=6;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=15;b.h.UQ1txt="%_SKILL_AFK_GAIN";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("Trophy6",a);a=newl();b=newl();b.h.displayName="Original_Gamer";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=7;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=2;b.h.WIS=2;b.h.LUK=2;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("Trophy7",a);a=newl();b=newl();b.h.displayName="Trailblazer";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=8;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("Trophy8",a);a=newl();b=newl();b.h.displayName="Ultra_Unboxer";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=9;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=3;b.h.Defence=3;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("Trophy9",a);a=newl();b=newl();b.h.displayName="Critter_Baron";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=10;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=20;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_AGI";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("Trophy10",a);a=newl();b=newl();b.h.displayName="YumYum_Sheriff";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=11;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=90;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=8;b.h.AGI=8;b.h.WIS=8;b.h.LUK=8;b.h.Defence=25;b.h.UQ1txt="%_BOSS_DAMAGE";b.h.UQ1val=12;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("Trophy11",a);a=newl();b=newl();b.h.displayName="Megalodon";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=12;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=15;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=30;b.h.UQ1txt="%_CRIT_CHANCE";b.h.UQ1val=15;b.h.UQ2txt="%_TOTAL_DAMAGE";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("Trophy12",a);a=newl();b=newl();b.h.displayName="Club_Maestro";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=13;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=70;b.h.Class="BEGINNER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=20;b.h.Defence=20;b.h.UQ1txt="%_SKILL_EXP";b.h.UQ1val=35;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("Trophy13",a);a=newl();b=newl();b.h.displayName="Beach_Bro";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=14;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=0;b.h.UQ1txt="%_MONEY";b.h.UQ1val=50;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("Trophy14",a);a=newl();b=newl();b.h.displayName="Frost_Prince";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=15;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=120;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=50;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=8;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("Trophy15",a);a=newl();b=newl();b.h.displayName="Idle_Skiller";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=16;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=99;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=20;b.h.AGI=20;b.h.WIS=20;b.h.LUK=20;b.h.Defence=0;b.h.UQ1txt="%_SKILL_EFFICIENCY";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("Trophy16",a);a=newl();b=newl();b.h.displayName="One_of_the|Divine";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=17;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=450;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=30;b.h.AGI=30;b.h.WIS=30;b.h.LUK=30;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=42;b.h.UQ2txt="%_TOTAL_DAMAGE";b.h.UQ2val=35;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("Trophy17",a);a=newl();b=newl();b.h.displayName="Master_of_Nothing";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=18;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=26;b.h.AGI=26;b.h.WIS=26;b.h.LUK=26;b.h.Defence=0;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=10;b.h.UQ2txt="%_SKILL_EXP";b.h.UQ2val=70;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("Trophy18",a);a=newl();b=newl();b.h.displayName="Nebula_Royal";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=19;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=320;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=0;b.h.UQ1txt="%_SKILL_EXP";b.h.UQ1val=50;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("Trophy19",a);a=newl();b=newl();b.h.displayName="Luckier_Lad";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=20;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=50;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=50;b.h.UQ2txt="%_LUK";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("Trophy20",a);a=newl();b=newl();b.h.displayName="Baller";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=21;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=3;b.h.Defence=3;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=3;b.h.UQ2txt="%_ALL_AFK_GAIN";b.h.UQ2val=3;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("Trophy21",a);a=newl();b=newl();b.h.displayName="Gladiator";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=22;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("Trophy22",a);a=newl();b=newl();b.h.displayName="Heroic_Spirit";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=23;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=600;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=50;b.h.UQ1txt="%_AFK_GAINS_MULTI";b.h.UQ1val=10;b.h.UQ2txt="%_DAMAGE_MULTI";b.h.UQ2val=20;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("Trophy23",a);a=newl();b=newl();b.h.displayName="Nine_Dart_Finish";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=24;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=9;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=50;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=9;b.h.UQ2txt="%_AFK_GAINS_MULTI";b.h.UQ2val=9;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("Trophy24",a);a=newl();b=newl();b.h.displayName="Luckiest_Lad";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=25;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=50;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=777;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("Trophy25",a);a=newl();b=newl();b.h.displayName="Replica_Trophy";b.h.sellPrice=1e10;b.h.typeGen="aTrophy";b.h.ID=0;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("TrophyReplica0",a);a=newl();b=newl();b.h.displayName="King_of_Food";b.h.sellPrice=1e4;b.h.typeGen="aTrophy";b.h.ID=1;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=25;b.h.UQ1txt="%_FOOD_EFFECT";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("TrophyReplica1",a);a=newl();b=newl();b.h.displayName="Lucky_Lad";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=2;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=7;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=7;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("TrophyReplica2",a);a=newl();b=newl();b.h.displayName="Club_Member";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=3;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=5;b.h.Defence=5;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("TrophyReplica3",a);a=newl();b=newl();b.h.displayName="I_Made_This_Game";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=4;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_PLAYER_HEIGHT";b.h.UQ1val=100;b.h.UQ2txt="%_RED_COLOURING";b.h.UQ2val=42;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("TrophyReplica4",a);a=newl();b=newl();b.h.displayName="Dice_Dynamo";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=5;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=5;b.h.Defence=0;b.h.UQ1txt="%_LUK";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("TrophyReplica5",a);a=newl();b=newl();b.h.displayName="Blunder_Hero";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=6;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=15;b.h.UQ1txt="%_SKILL_AFK_GAIN";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("TrophyReplica6",a);a=newl();b=newl();b.h.displayName="Original_Gamer";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=7;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=2;b.h.WIS=2;b.h.LUK=2;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("TrophyReplica7",a);a=newl();b=newl();b.h.displayName="Trailblazer";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=8;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("TrophyReplica8",a);a=newl();b=newl();b.h.displayName="Ultra_Unboxer";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=9;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=3;b.h.Defence=3;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("TrophyReplica9",a);a=newl();b=newl();b.h.displayName="Critter_Baron";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=10;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=20;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_AGI";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("TrophyReplica10",a);a=newl();b=newl();b.h.displayName="YumYum_Sheriff";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=11;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=8;b.h.AGI=8;b.h.WIS=8;b.h.LUK=8;b.h.Defence=25;b.h.UQ1txt="%_BOSS_DAMAGE";b.h.UQ1val=12;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("TrophyReplica11",a);a=newl();b=newl();b.h.displayName="Megalodon";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=12;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=15;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=30;b.h.UQ1txt="%_CRIT_CHANCE";b.h.UQ1val=15;b.h.UQ2txt="%_TOTAL_DAMAGE";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("TrophyReplica12",a);a=newl();b=newl();b.h.displayName="Club_Maestro";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=13;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=20;b.h.Defence=20;b.h.UQ1txt="%_SKILL_EXP";b.h.UQ1val=35;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("TrophyReplica13",a);a=newl();b=newl();b.h.displayName="Beach_Bro";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=14;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=0;b.h.UQ1txt="%_MONEY";b.h.UQ1val=50;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("TrophyReplica14",a);a=newl();b=newl();b.h.displayName="Frost_Prince";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=15;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=50;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=8;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("TrophyReplica15",a);a=newl();b=newl();b.h.displayName="Idle_Skiller";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=16;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=20;b.h.AGI=20;b.h.WIS=20;b.h.LUK=20;b.h.Defence=0;b.h.UQ1txt="%_SKILL_EFFICIENCY";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("TrophyReplica16",a);a=newl();b=newl();b.h.displayName="One_of_the|Divine";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=17;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=30;b.h.AGI=30;b.h.WIS=30;b.h.LUK=30;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=42;b.h.UQ2txt="%_TOTAL_DAMAGE";b.h.UQ2val=35;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("TrophyReplica17",a);a=newl();b=newl();b.h.displayName="Master_of_Nothing";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=18;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=26;b.h.AGI=26;b.h.WIS=26;b.h.LUK=26;b.h.Defence=0;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=10;b.h.UQ2txt="%_SKILL_EXP";b.h.UQ2val=70;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("TrophyReplica18",a);a=newl();b=newl();b.h.displayName="Nebula_Royal";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=19;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=0;b.h.UQ1txt="%_SKILL_EXP";b.h.UQ1val=50;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("TrophyReplica19",a);a=newl();b=newl();b.h.displayName="Luckier_Lad";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=20;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=50;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=50;b.h.UQ2txt="%_LUK";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("TrophyReplica20",a);a=newl();b=newl();b.h.displayName="Baller";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=21;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=3;b.h.Defence=3;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=3;b.h.UQ2txt="%_ALL_AFK_GAIN";b.h.UQ2val=3;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("TrophyReplica21",a);a=newl();b=newl();b.h.displayName="Gladiator";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=22;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("TrophyReplica22",a);a=newl();b=newl();b.h.displayName="Heroic_Spirit";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=23;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=50;b.h.UQ1txt="%_AFK_GAINS_MULTI";b.h.UQ1val=10;b.h.UQ2txt="%_DAMAGE_MULTI";b.h.UQ2val=20;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("TrophyReplica23",a);a=newl();b=newl();b.h.displayName="Nine_Dart_Finish";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=24;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=9;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=50;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=9;b.h.UQ2txt="%_AFK_GAINS_MULTI";b.h.UQ2val=9;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("TrophyReplica24",a);a=newl();b=newl();b.h.displayName="Nine_Dart_Finish";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=25;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=9;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=777;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("TrophyReplica25",a);a=newl();b=newl();b.h.displayName="Riftwalker|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=1;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=6;b.h.STR=8;b.h.AGI=8;b.h.WIS=8;b.h.LUK=8;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=50;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag1",a);a=newl();b=newl();b.h.displayName="Lava's_Awesome|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=2;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=100;b.h.STR=200;b.h.AGI=200;b.h.WIS=200;b.h.LUK=200;b.h.Defence=3;b.h.UQ1txt="%_SKILL";b.h.UQ1val=20;b.h.UQ2txt="%_POWER_OF_WILL";b.h.UQ2val=15;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag2",a);a=newl();b=newl();b.h.displayName="Balling_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=3;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=40;b.h.Defence=20;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=40;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag3",a);a=newl();b=newl();b.h.displayName="Vman_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=4;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="BEGINNER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=30;b.h.Defence=0;b.h.UQ1txt="%_MULTIKILL_PER_TIER";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag4",a);a=newl();b=newl();b.h.displayName="Spring_Flowers|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=5;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=4;b.h.AGI=4;b.h.WIS=4;b.h.LUK=4;b.h.Defence=0;b.h.UQ1txt="%_SKILL_EXP";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag5",a);a=newl();b=newl();b.h.displayName="Trash_Tuna|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=6;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=30;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_FISHING_XP_GAIN";b.h.UQ1val=200;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag6b",a);a=newl();b=newl();b.h.displayName="Island_Adventurer|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=7;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=12;b.h.STR=12;b.h.AGI=12;b.h.WIS=12;b.h.LUK=12;b.h.Defence=0;b.h.UQ1txt="%_FIGHT_AFK_GAIN";b.h.UQ1val=10;b.h.UQ2txt="%_FISHIN_EFFICINCY";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag7",a);a=newl();b=newl();b.h.displayName="Summer_Shovel|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=8;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=4;b.h.AGI=4;b.h.WIS=4;b.h.LUK=4;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=15;b.h.UQ2txt="%_ALL_STATS";b.h.UQ2val=4;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag8",a);a=newl();b=newl();b.h.displayName="Falloween|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=9;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=10;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MINING_XP_GAIN";b.h.UQ1val=25;b.h.UQ2txt="%_SKILL_AFK_GAIN";b.h.UQ2val=3;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag9",a);a=newl();b=newl();b.h.displayName="3rd_Anniversary|IdleOn_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=10;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=3;b.h.Defence=3;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=3;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=3;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag10",a);a=newl();b=newl();b.h.displayName="Nightshade|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=11;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=4;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag11",a);a=newl();b=newl();b.h.displayName="Megafeather|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=12;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag12",a);a=newl();b=newl();b.h.displayName="Timeless|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=13;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=40;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag13",a);a=newl();b=newl();b.h.displayName="Snowflake|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=14;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=5;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=3;b.h.UQ2txt="%_DAMAGE_MULTI";b.h.UQ2val=3;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag14",a);a=newl();b=newl();b.h.displayName="Frostyman|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=15;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=6;b.h.AGI=6;b.h.WIS=6;b.h.LUK=6;b.h.Defence=25;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=25;b.h.UQ2txt="%_DAMAGE_MULTI";b.h.UQ2val=15;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag15",a);a=newl();b=newl();b.h.displayName="Lovely_Day|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=16;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=8;b.h.AGI=8;b.h.WIS=8;b.h.LUK=0;b.h.Defence=25;b.h.UQ1txt="%_DAMAGE_BONUS";b.h.UQ1val=60;b.h.UQ2txt="%_MONEY";b.h.UQ2val=200;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag16",a);a=newl();b=newl();b.h.displayName="Spectacular_4th|Year_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=17;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=4;b.h.AGI=4;b.h.WIS=4;b.h.LUK=4;b.h.Defence=44;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=144;b.h.UQ2txt="%_ALL_AFK_GAIN";b.h.UQ2val=44;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag17",a);a=newl();b=newl();b.h.displayName="4th_Anniversary|IdleOn_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=18;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=4;b.h.AGI=4;b.h.WIS=4;b.h.LUK=4;b.h.Defence=4;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=14;b.h.UQ2txt="%_DAMAGE_MULTI";b.h.UQ2val=14;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag18",a);a=newl();b=newl();b.h.displayName="Aethermoon|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=19;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=20;b.h.AGI=20;b.h.WIS=20;b.h.LUK=0;b.h.Defence=30;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=80;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag19",a);a=newl();b=newl();b.h.displayName="Deadbones|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=20;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=7;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=10;b.h.Defence=15;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=25;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=35;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag20",a);a=newl();b=newl();b.h.displayName="Treasure|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=21;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=7;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=10;b.h.Defence=15;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=25;b.h.UQ2txt="%_MONEY";b.h.UQ2val=25;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag21",a);a=newl();b=newl();b.h.displayName="Tome_Apprentice|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=22;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=5;b.h.UQ2txt="%_MONEY";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag22",a);a=newl();b=newl();b.h.displayName="Tome_Journeyman|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=23;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_FIGHT_AFK_GAIN";b.h.UQ1val=7;b.h.UQ2txt="%_SKILL_AFK_GAIN";b.h.UQ2val=7;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag23",a);a=newl();b=newl();b.h.displayName="Tome_Expert|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=24;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=10;b.h.UQ2txt="%_MOB_RESPAWN";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag24",a);a=newl();b=newl();b.h.displayName="Tome_Elite|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=25;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=12;b.h.UQ2txt="%_MULTIKILL_PER_TIER";b.h.UQ2val=12;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag25",a);a=newl();b=newl();b.h.displayName="Tome_Pro|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=26;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=15;b.h.UQ2txt="%_BONUS_MONEY";b.h.UQ2val=15;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag26",a);a=newl();b=newl();b.h.displayName="Tome_Master|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=27;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_BONUS_KILLS";b.h.UQ1val=17;b.h.UQ2txt="%_ALL_STATS";b.h.UQ2val=17;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag27",a);a=newl();b=newl();b.h.displayName="Tome_Legend|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=28;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=20;b.h.UQ2txt="%_AFK_GAINS_MULTI";b.h.UQ2val=20;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag28",a);a=newl();b=newl();b.h.displayName="Reliquarium|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=29;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=20;b.h.UQ2txt="%_AFK_GAINS_MULTI";b.h.UQ2val=20;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag29",a);a=newl();b=newl();b.h.displayName="Cropfall|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=30;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_BONUS_CLASS_EXP";b.h.UQ1val=25;b.h.UQ2txt="%_XP_FROM_MONSTERS";b.h.UQ2val=80;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag30",a);a=newl();b=newl();b.h.displayName="Gingerbread|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=31;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=30;b.h.UQ2txt="%_TOTAL_DAMAGE";b.h.UQ2val=50;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag31",a);a=newl();b=newl();b.h.displayName="Sweet_Chocolate|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=32;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=25;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag32",a);a=newl();b=newl();b.h.displayName="Pot_of_Gold|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=33;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=30;b.h.UQ2txt="%_MONEY";b.h.UQ2val=100;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag33",a);a=newl();b=newl();b.h.displayName="Emerald|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=34;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_KILLS_IN_WORLD_6";b.h.UQ1val=25;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag34",a);a=newl();b=newl();b.h.displayName="5th_Anniversary|IdleOn_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=35;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=5;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=5;b.h.UQ2txt="%_DAMAGE_MULTI";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag35",a);a=newl();b=newl();b.h.displayName="Wonderful_5th|Year_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=36;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=55;b.h.UQ1txt="%_KILLS_IN_WORLD_7";b.h.UQ1val=25;b.h.UQ2txt="%_CLASS_EXP_MULTI";b.h.UQ2val=55;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag36",a);a=newl();b=newl();b.h.displayName="Grand_Egg|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=37;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=20;b.h.STR=40;b.h.AGI=40;b.h.WIS=40;b.h.LUK=40;b.h.Defence=70;b.h.UQ1txt="%_AFK_GAINS_MULTI";b.h.UQ1val=25;b.h.UQ2txt="%_BIGGER_DAMAGE";b.h.UQ2val=25;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametag37",a);a=newl();b=newl();b.h.displayName="Replica_Nametag";b.h.sellPrice=5e11;b.h.typeGen="aNametag";b.h.ID=0;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica0",a);a=newl();b=newl();b.h.displayName="Riftwalker|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=1;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=6;b.h.STR=8;b.h.AGI=8;b.h.WIS=8;b.h.LUK=8;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=50;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica1",a);a=newl();b=newl();b.h.displayName="Lava's_Awesome|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=2;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=100;b.h.STR=200;b.h.AGI=200;b.h.WIS=200;b.h.LUK=200;b.h.Defence=3;b.h.UQ1txt="%_SKILL";b.h.UQ1val=20;b.h.UQ2txt="%_POWER_OF_WILL";b.h.UQ2val=15;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica2",a);a=newl();b=newl();b.h.displayName="Balling_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=3;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=40;b.h.Defence=20;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=40;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica3",a);a=newl();b=newl();b.h.displayName="Vman_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=4;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=30;b.h.Defence=0;b.h.UQ1txt="%_MULTIKILL_PER_TIER";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica4",a);a=newl();b=newl();b.h.displayName="Spring_Flowers|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=5;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=4;b.h.AGI=4;b.h.WIS=4;b.h.LUK=4;b.h.Defence=0;b.h.UQ1txt="%_SKILL_EXP";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica5",a);a=newl();b=newl();b.h.displayName="Trash_Tuna|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=6;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=30;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_FISHING_XP_GAIN";b.h.UQ1val=200;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica6",a);a=newl();b=newl();b.h.displayName="Island_Adventurer|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=7;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=12;b.h.STR=12;b.h.AGI=12;b.h.WIS=12;b.h.LUK=12;b.h.Defence=0;b.h.UQ1txt="%_FIGHT_AFK_GAIN";b.h.UQ1val=10;b.h.UQ2txt="%_FISHIN_EFFICINCY";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica7",a);a=newl();b=newl();b.h.displayName="Summer_Shovel|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=8;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=4;b.h.AGI=4;b.h.WIS=4;b.h.LUK=4;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=15;b.h.UQ2txt="%_ALL_STATS";b.h.UQ2val=4;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica8",a);a=newl();b=newl();b.h.displayName="Falloween|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=9;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=10;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MINING_XP_GAIN";b.h.UQ1val=25;b.h.UQ2txt="%_SKILL_AFK_GAIN";b.h.UQ2val=3;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica9",a);a=newl();b=newl();b.h.displayName="3rd_Anniversary|IdleOn_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=10;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=3;b.h.Defence=3;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=3;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=3;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica10",a);a=newl();b=newl();b.h.displayName="Nightshade|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=11;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=4;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica11",a);a=newl();b=newl();b.h.displayName="Megafeather|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=12;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica12",a);a=newl();b=newl();b.h.displayName="Timeless|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=13;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=40;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica13",a);a=newl();b=newl();b.h.displayName="Snowflake|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=14;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=5;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=3;b.h.UQ2txt="%_DAMAGE_MULTI";b.h.UQ2val=3;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica14",a);a=newl();b=newl();b.h.displayName="Frostyman|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=15;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=6;b.h.AGI=6;b.h.WIS=6;b.h.LUK=6;b.h.Defence=25;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=25;b.h.UQ2txt="%_DAMAGE_MULTI";b.h.UQ2val=15;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica15",a);a=newl();b=newl();b.h.displayName="Lovely_Day|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=16;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=8;b.h.AGI=8;b.h.WIS=8;b.h.LUK=0;b.h.Defence=25;b.h.UQ1txt="%_DAMAGE_BONUS";b.h.UQ1val=60;b.h.UQ2txt="%_MONEY";b.h.UQ2val=200;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica16",a);a=newl();b=newl();b.h.displayName="Spectacular_4th|Year_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=17;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=4;b.h.AGI=4;b.h.WIS=4;b.h.LUK=4;b.h.Defence=44;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=144;b.h.UQ2txt="%_ALL_AFK_GAIN";b.h.UQ2val=44;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica17",a);a=newl();b=newl();b.h.displayName="4th_Anniversary|IdleOn_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=18;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=4;b.h.AGI=4;b.h.WIS=4;b.h.LUK=4;b.h.Defence=4;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=14;b.h.UQ2txt="%_DAMAGE_MULTI";b.h.UQ2val=14;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica18",a);a=newl();b=newl();b.h.displayName="Aethermoon|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=19;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=20;b.h.AGI=20;b.h.WIS=20;b.h.LUK=0;b.h.Defence=30;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=80;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica19",a);a=newl();b=newl();b.h.displayName="Deadbones|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=20;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=7;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=10;b.h.Defence=15;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=25;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=35;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica20",a);a=newl();b=newl();b.h.displayName="Treasure|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=21;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=7;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=10;b.h.Defence=15;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=25;b.h.UQ2txt="%_MONEY";b.h.UQ2val=25;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica21",a);a=newl();b=newl();b.h.displayName="Tome_Apprentice|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=22;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=5;b.h.UQ2txt="%_MONEY";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica22",a);a=newl();b=newl();b.h.displayName="Tome_Journeyman|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=23;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_FIGHT_AFK_GAIN";b.h.UQ1val=7;b.h.UQ2txt="%_SKILL_AFK_GAIN";b.h.UQ2val=7;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica23",a);a=newl();b=newl();b.h.displayName="Tome_Expert|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=24;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=10;b.h.UQ2txt="%_MOB_RESPAWN";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica24",a);a=newl();b=newl();b.h.displayName="Tome_Elite|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=25;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=12;b.h.UQ2txt="%_MULTIKILL_PER_TIER";b.h.UQ2val=12;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica25",a);a=newl();b=newl();b.h.displayName="Tome_Pro|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=26;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=15;b.h.UQ2txt="%_BONUS_MONEY";b.h.UQ2val=15;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica26",a);a=newl();b=newl();b.h.displayName="Tome_Master|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=27;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_BONUS_KILLS";b.h.UQ1val=17;b.h.UQ2txt="%_ALL_STATS";b.h.UQ2val=17;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica27",a);a=newl();b=newl();b.h.displayName="Tome_Legend|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=28;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=20;b.h.UQ2txt="%_AFK_GAINS_MULTI";b.h.UQ2val=20;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica28",a);a=newl();b=newl();b.h.displayName="Reliquarium|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=29;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=20;b.h.UQ2txt="%_AFK_GAINS_MULTI";b.h.UQ2val=20;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica29",a);a=newl();b=newl();b.h.displayName="Cropfall|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=30;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_BONUS_CLASS_EXP";b.h.UQ1val=25;b.h.UQ2txt="%_XP_FROM_MONSTERS";b.h.UQ2val=80;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica30",a);a=newl();b=newl();b.h.displayName="Gingerbread|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=31;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=30;b.h.UQ2txt="%_TOTAL_DAMAGE";b.h.UQ2val=50;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica31",a);a=newl();b=newl();b.h.displayName="Sweet_Chocolate|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=32;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=25;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica32",a);a=newl();b=newl();b.h.displayName="Pot_of_Gold|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=33;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=30;b.h.UQ2txt="%_MONEY";b.h.UQ2val=100;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica33",a);a=newl();b=newl();b.h.displayName="Emerald|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=34;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_KILLS_IN_WORLD_6";b.h.UQ1val=25;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica34",a);a=newl();b=newl();b.h.displayName="5th_Anniversary|IdleOn_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=35;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=5;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=5;b.h.UQ2txt="%_DAMAGE_MULTI";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica35",a);a=newl();b=newl();b.h.displayName="Wonderful_5th|Year_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=36;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=55;b.h.UQ1txt="%_KILLS_IN_WORLD_7";b.h.UQ1val=25;b.h.UQ2txt="%_CLASS_EXP_MULTI";b.h.UQ2val=55;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica36",a);a=newl();b=newl();b.h.displayName="Grand_Egg|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=37;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=20;b.h.STR=40;b.h.AGI=40;b.h.WIS=40;b.h.LUK=40;b.h.Defence=70;b.h.UQ1txt="%_AFK_GAINS_MULTI";b.h.UQ1val=25;b.h.UQ2txt="%_BIGGER_DAMAGE";b.h.UQ2val=25;b.h.Upgrade_Slots_Left=0;a.h.equip=b;N.addNewEquip("EquipmentNametagReplica37",a);a=newl();b=newl();b.h.displayName="Smitty's_Bubble|Blowing_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=35;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_SKILL_EFFICIENCY";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats31",a);a=newl();b=newl();b.h.displayName="Bandit_Bob_Mask";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=36;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats32",a);a=newl();b=newl();b.h.displayName="Paper_Bag";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=37;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_BONUS_MONEY";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats33",a);a=newl();b=newl();b.h.displayName="Parasite";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=38;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats34",a);a=newl();b=newl();b.h.displayName="Diamond_Horns";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=39;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=8;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=7;a.h.equip=b;N.addNewEquip("EquipmentHats35",a);a=newl();b=newl();b.h.displayName="Halloween_Pumpkin";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=40;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats36",a);a=newl();b=newl();b.h.displayName="Pardoned_Turkey";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=43;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats40",a);a=newl();b=newl();b.h.displayName="Hotdog_Hero";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=41;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_SKILL_EFFICIENCY";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats37",a);a=newl();b=newl();b.h.displayName="Invisible_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=1;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats38",a);a=newl();b=newl();b.h.displayName="Strawbiggy";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=49;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=4;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats46",a);a=newl();b=newl();b.h.displayName="Pop_Cat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=50;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats47",a);a=newl();b=newl();b.h.displayName="Dairy_Dunk";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=51;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_SKILL_EFFICIENCY";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats48",a);a=newl();b=newl();b.h.displayName="The_Classic";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=52;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_AFK_GAINS_MULTI";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats49",a);a=newl();b=newl();b.h.displayName="Green_Beanie";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=53;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats50",a);a=newl();b=newl();b.h.displayName="Snowman";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=46;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats43",a);a=newl();b=newl();b.h.displayName="Giftmas_Tree";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=48;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats45",a);a=newl();b=newl();b.h.displayName="Big_Bunny";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=60;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=11;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats57",a);a=newl();b=newl();b.h.displayName="Fluffy_Ramsy";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=65;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=11;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats62",a);a=newl();b=newl();b.h.displayName="The_Red_Boaty";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=73;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats65",a);a=newl();b=newl();b.h.displayName="Giftmas_Snoozy|Cap";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=77;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats69",a);a=newl();b=newl();b.h.displayName="Corgi_Topper";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=88;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats80",a);a=newl();b=newl();b.h.displayName="Husky_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=116;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats109",a);a=newl();b=newl();b.h.displayName="Siege_Captain_Cap";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=89;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats81",a);a=newl();b=newl();b.h.displayName="Ele_Sorcerer|Pointed_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=90;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats82",a);a=newl();b=newl();b.h.displayName="Bedsheet_with|Holes";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=92;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_BONUS_KILLS";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats85",a);a=newl();b=newl();b.h.displayName="Carrotman_Mask";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=93;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats86",a);a=newl();b=newl();b.h.displayName="Glublin_Mask";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=94;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats87",a);a=newl();b=newl();b.h.displayName="Bloque_Mask";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=95;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_BONUS_KILLS";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats88",a);a=newl();b=newl();b.h.displayName="Borzoi_Topper";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=96;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats89",a);a=newl();b=newl();b.h.displayName="Straw_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=99;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats90",a);a=newl();b=newl();b.h.displayName="Wig_Bandana";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=100;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_SKILL_EFFICIENCY";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats91",a);a=newl();b=newl();b.h.displayName="Funky_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=101;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_AFK_GAINS_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats92",a);a=newl();b=newl();b.h.displayName="Reinforced_Headband";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=102;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats93",a);a=newl();b=newl();b.h.displayName="Shogun_Helmet";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=103;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DIVINITY_EXP";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats94",a);a=newl();b=newl();b.h.displayName="Gilded_Headband";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=104;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats95",a);a=newl();b=newl();b.h.displayName="Bamboo_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=105;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats96",a);a=newl();b=newl();b.h.displayName="Festive_Beast_Mask";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=106;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_BONUS_MONEY";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats97",a);a=newl();b=newl();b.h.displayName="Heiress_Headdress";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=107;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MASTERCLASS_DROPS";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats98",a);a=newl();b=newl();b.h.displayName="Spirited_Mane";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=108;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_AFK_GAINS_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats99",a);a=newl();b=newl();b.h.displayName="Fiery_Mane";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=109;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats100",a);a=newl();b=newl();b.h.displayName="Guardian_Mane";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=110;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats101",a);a=newl();b=newl();b.h.displayName="Fanned_Blossomage";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=111;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats102",a);a=newl();b=newl();b.h.displayName="Dainty_Brim";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=112;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MASTERCLASS_DROPS";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats103",a);a=newl();b=newl();b.h.displayName="Charcoal_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=113;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats104",a);a=newl();b=newl();b.h.displayName="Yellow_Beanie";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=117;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_BONUS_KILLS";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats110",a);a=newl();b=newl();b.h.displayName="Deathbringer|Hood_of_Death";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=119;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_EXTRA_BONES";b.h.UQ1val=25;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats112",a);a=newl();b=newl();b.h.displayName="Pink_Beanie";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=120;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats113",a);a=newl();b=newl();b.h.displayName="True_Crown";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=121;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=150;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats114",a);a=newl();b=newl();b.h.displayName="Celebration_Mane";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=123;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats115",a);a=newl();b=newl();b.h.displayName="Goldberry";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=122;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats116",a);a=newl();b=newl();b.h.displayName="Orange_Beanie";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=124;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats117",a);a=newl();b=newl();b.h.displayName="Windwalker_Hood";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=125;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DUST_MULTI";b.h.UQ1val=25;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats118",a);a=newl();b=newl();b.h.displayName="Umbrella_Brim";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=127;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_BONUS_MONEY";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats120",a);a=newl();b=newl();b.h.displayName="Bloo_Creamer";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=128;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_SKILL_EXP";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats121",a);a=newl();b=newl();b.h.displayName="Arcanist_Crown";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=129;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_EXTRA_TACHYONS";b.h.UQ1val=25;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats122",a);a=newl();b=newl();b.h.displayName="Alpine_Beanie";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=131;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats124",a);a=newl();b=newl();b.h.displayName="Rudolph_Antlers";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=132;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats125",a);a=newl();b=newl();b.h.displayName="Helper_Elf_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=133;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DIVINITY_EXP";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats126",a);a=newl();b=newl();b.h.displayName="Seal_Team|Skipper_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=134;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=100;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats127",a);a=newl();b=newl();b.h.displayName="Lovely_Top_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=135;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats128",a);a=newl();b=newl();b.h.displayName="Polkadot_Beanie";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=136;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=1;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats129",a);a=newl();b=newl();b.h.displayName="Leprechaun_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=137;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats130",a);a=newl();b=newl();b.h.displayName="Lucky_Ducky_Brim";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=138;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats131",a);a=newl();b=newl();b.h.displayName="Time_Traveler|Top_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=139;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=30;b.h.UQ2txt="%_BONUS_KILLS";b.h.UQ2val=30;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats132",a);a=newl();b=newl();b.h.displayName="Native_Headdress";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=140;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_SKILL_EXP";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats133",a);a=newl();b=newl();b.h.displayName="Starry_Hairpins";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=141;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats134",a);a=newl();b=newl();b.h.displayName="Blonde_Hairpiece";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=142;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;N.addNewEquip("EquipmentHats135",a);a=newl();b=newl();b.h.displayName="CardsA0";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="mushG";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsA0",a);a=newl();b=newl();b.h.displayName="CardsA1";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="mushR";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsA1",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="frogG";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsA2",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="beanG";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsA3",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="slimeG";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsA4",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="snakeG";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsA5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="carrotO";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsA6",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="goblinG";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsA7",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="plank";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsA8",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="frogBIG";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsA9",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="poopSmall";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsA10",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="ratB";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsA11",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="branch";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsA12",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="acorn";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsA13",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Crystal0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsA14",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="poopD";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsA15",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="mushW";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsA16",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="jarSand";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsB1",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="mimicA";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsB2",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="crabcake";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsB3",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="coconut";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsB4",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="sandcastle";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsB5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="pincermin";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsB6",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="potato";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsB7",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="steak";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsB8",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="moonman";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsB9",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="sandgiant";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsB10",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="snailZ";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsB11",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="shovelR";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsB12",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Crystal1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsB13",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bandit_Bob";b.h.desc_line2="Bandit_Bob";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsB14",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Copper";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsC1",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Iron";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsC2",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Gold";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsC3",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="OakTree";b.h.desc_line2="Oak_Tree";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsC4",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="BirchTree";b.h.desc_line2="Birch_Tree";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsC5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="JungleTree";b.h.desc_line2="Jungle_Tree";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsC6",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="ForestTree";b.h.desc_line2="Forest_Tree";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsC7",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Fish1";b.h.desc_line2="Goldfish";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsC8",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Fish2";b.h.desc_line2="Snail";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsC9",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Fish3";b.h.desc_line2="Jellyfish";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsC10",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bug1";b.h.desc_line2="Flies";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsC11",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bug2";b.h.desc_line2="Butterflies";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsC12",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="CopperBar";b.h.desc_line2="Copper_Bar";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsC13",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="IronBar";b.h.desc_line2="Iron_Bar";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsC14",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="GoldBar";b.h.desc_line2="Gold_Bar";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsC15",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="ForgeA";b.h.desc_line2="Fire_Forge";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsC16",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Dementia";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsD1",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Plat";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsD2",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Void";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsD3",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Lustre";b.h.desc_line2="Oak_Tree";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsD4",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="ToiletTree";b.h.desc_line2="Birch_Tree";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsD5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="StumpTree";b.h.desc_line2="Jungle_Tree";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsD6",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="PalmTree";b.h.desc_line2="Forest_Tree";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsD7",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SaharanFoal";b.h.desc_line2="Saharan_Foal";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsD8",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bug4";b.h.desc_line2="Snail";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsD9",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bug3";b.h.desc_line2="Jellyfish";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsD10",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Fish4";b.h.desc_line2="Flies";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsD11",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="_";b.h.desc_line2="Butterflies";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsD12",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="_";b.h.desc_line2="Sentient_Cereal";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsD13",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="ForgeB";b.h.desc_line2="Cinder_Forge";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsD16",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SoulCard1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsD17",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SoulCard2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsD18",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="CritterCard1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsD19",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="CritterCard2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsD20",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="CritterCard3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsD21",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="sheep";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsE0",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="flake";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsE1",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="stache";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsE2",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="bloque";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsE3",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="mamoth";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsE4",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="snowball";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsE5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="penguin";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsE6",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="thermostat";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsE7",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="glass";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsE8",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="snakeB";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsE9",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="speaker";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsE10",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="eye";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsE11",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="skele";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsE12",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="skele2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsE13",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="ram";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsE14",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Crystal2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsE15",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Lustre";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF1",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Tree7";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF2",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SoulCard3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF3",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="CritterCard4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF4",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="CritterCard5";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="CritterCard6";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF6",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="CritterCard7";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF7",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bug5";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF8",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bug6";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF9",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SoulCard4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF10",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SoulCard5";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF11",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Tree8";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF12",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="AlienTree";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF13",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bug7";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF14",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bug8";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF15",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Starfire";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF16",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="CritterCard8";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF17",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="CritterCard9";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF18",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="CritterCard10";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF19",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Fish5";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF20",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Fish6";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF21",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Fish7";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF22",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Fish8";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF23",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Tree9";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF24",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Tree10";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF25",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bug9";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF26",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bug10";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF27",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SoulCard6";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF28",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Dreadlo";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF29",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Fish9";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF30",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Fish10";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF31",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Fish11";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF32",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Fish12";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF33",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Tree12";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF34",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Tree13";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF35",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SoulCard7";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF36",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bug12";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF37",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bug13";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF38",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Godshard";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF39",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Tree14";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF40",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SpelunkingCard0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF41",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SpelunkingCard1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF42",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SpelunkingCard2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF43",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Prehistrium";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF44",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SoulCard8";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF45",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bug14";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF46",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="CritterCard11";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF47",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SpelunkingCard3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF48",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SpelunkingCard4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF49",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SpelunkingCard5";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF50",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SpelunkingCard6";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsF51",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="mushP";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsG1",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w4a2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsG2",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w4a3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsG3",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="demonP";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsG4",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w4b1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsG5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w4b2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsG6",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w4b3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsG7",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w4b4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsG8",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w4b5";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsG9",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w4c1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsG10",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w4c2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsG11",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w4c3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsG12",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w4c4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsG13",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Crystal3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsG14",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w5a1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsH1",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w5a2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsH2",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w5a3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsH3",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w5a4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsH4",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w5a5";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsH5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w5b1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsH6",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w5b2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsH7",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w5b3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsH8",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w5b4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsH9",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w5b5";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsH10",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w5b6";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsH11",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w5c1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsH12",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w5c2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsH13",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Crystal4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsH14",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="caveB";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsH15",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="caveC";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsH16",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6a1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsI1",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6a2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsI2",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6a3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsI3",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6a4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsI4",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6a5";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsI5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6b1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsI6",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6b2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsI7",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6b3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsI8",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6b4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsI9",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6c1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsI10",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6c2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsI11",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6d1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsI12",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6d2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsI13",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6d3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsI14",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Crystal5";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsI15",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7a1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsJ1",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7a2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsJ2",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7a3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsJ3",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7a4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsJ4",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7a5";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsJ5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7a6";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsJ6",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7a7";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsJ7",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7a8";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsJ8",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7a9";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsJ9",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7a10";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsJ10",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7a11";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsJ11",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7a12";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsJ12",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7b1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsJ13",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7b2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsJ14",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7b3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsJ15",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7b4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsJ16",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7b5";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsJ17",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7b6";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsJ18",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7b7";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsJ19",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7b8";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsJ20",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7b9";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsJ21",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7b10";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsJ22",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7b11";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsJ23",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7b12";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsJ24",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Crystal6";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsJ99",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="frogP";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsX0",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="frogD";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsX1",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="frogY";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsX2",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="frogGR";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsX3",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="frogGR2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsX4",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="frogGR3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsX5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="frogGR4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsX21",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="frogGG";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsX22",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="target";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsX6",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="rocky";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsX7",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="cactus";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsX8",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="steakR";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsX9",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="potatoB";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsX10",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="snakeZ";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsX11",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="snakeZ2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsX12",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="snakeZ3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsX13",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="frogR";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsX14",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="frogW";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsX15",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="totem";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsX16",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="iceknight";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsX17",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="iceBossZ";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsX18",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="iceBossZ2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsX19",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="iceBossZ3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsX20",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="ghost";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsY0",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="xmasEvent";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsY1",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="xmasEvent2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsY2",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="slimeR";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsY3",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="loveEvent";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsY4",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="loveEvent2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsY5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="loveEvent2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsY5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="sheepB";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsY6",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="snakeY";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsY7",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="EasterEvent1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsY8",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="EasterEvent2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsY9",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="crabcakeB";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsY10",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SummerEvent1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsY11",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SummerEvent2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsY12",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="shovelY";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsY13",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="xmasEvent3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsY14",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="loveEvent3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsY15",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="springEvent1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsY16",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="springEvent2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsY17",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="fallEvent1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsY18",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="anni4Event1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsY19",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="cropfallEvent1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsY20",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="xmasEvent4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsY21",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="luckEvent1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsY22",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="luckEvent2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsY23",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="anni5Event1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsY24",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="babayaga";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ0",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="poopBig";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ1",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="wolfA";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ2",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss2A";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ3",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="wolfB";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ4",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="babaHour";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="babaMummy";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ6",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss2B";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ7",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss3A";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ8",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss3B";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ9",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss4A";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ10",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss4B";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ11",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="mini3a";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ12",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="mini4a";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ13",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="wolfC";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ14",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss2C";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ15",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss3C";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ16",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss4C";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ17",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss5A";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ18",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss5B";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ19",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss5C";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ20",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss6A";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ21",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss6B";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ22",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss6C";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ23",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="mini5a";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ24",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="mini6a";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ25",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="slimeB";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;N.addNewQuest("CardsZ26",a);""" # fmt: skip # noqa +script_item_definitions_6 = """O.itemDefs=newl();vara=newl(),b=newl();b.h.displayName="King_of_Food";b.h.sellPrice=1e4;b.h.typeGen="aTrophy";b.h.ID=1;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=65;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=25;b.h.UQ1txt="%_FOOD_EFFECT";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("Trophy1",a);a=newl();b=newl();b.h.displayName="Lucky_Lad";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=2;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=7;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=7;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("Trophy2",a);a=newl();b=newl();b.h.displayName="Club_Member";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=3;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="BEGINNER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=5;b.h.Defence=5;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("Trophy3",a);a=newl();b=newl();b.h.displayName="I_Made_This_Game";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=4;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_PLAYER_HEIGHT";b.h.UQ1val=100;b.h.UQ2txt="%_RED_COLOURING";b.h.UQ2val=42;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("Trophy4",a);a=newl();b=newl();b.h.displayName="Dice_Dynamo";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=5;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=5;b.h.Defence=0;b.h.UQ1txt="%_LUK";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("Trophy5",a);a=newl();b=newl();b.h.displayName="Blunder_Hero";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=6;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=50;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=15;b.h.UQ1txt="%_SKILL_AFK_GAIN";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("Trophy6",a);a=newl();b=newl();b.h.displayName="Original_Gamer";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=7;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=2;b.h.WIS=2;b.h.LUK=2;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("Trophy7",a);a=newl();b=newl();b.h.displayName="Trailblazer";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=8;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("Trophy8",a);a=newl();b=newl();b.h.displayName="Ultra_Unboxer";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=9;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=3;b.h.Defence=3;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("Trophy9",a);a=newl();b=newl();b.h.displayName="Critter_Baron";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=10;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=20;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_AGI";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("Trophy10",a);a=newl();b=newl();b.h.displayName="YumYum_Sheriff";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=11;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=90;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=8;b.h.AGI=8;b.h.WIS=8;b.h.LUK=8;b.h.Defence=25;b.h.UQ1txt="%_BOSS_DAMAGE";b.h.UQ1val=12;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("Trophy11",a);a=newl();b=newl();b.h.displayName="Megalodon";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=12;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=15;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=30;b.h.UQ1txt="%_CRIT_CHANCE";b.h.UQ1val=15;b.h.UQ2txt="%_TOTAL_DAMAGE";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("Trophy12",a);a=newl();b=newl();b.h.displayName="Club_Maestro";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=13;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=70;b.h.Class="BEGINNER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=20;b.h.Defence=20;b.h.UQ1txt="%_SKILL_EXP";b.h.UQ1val=35;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("Trophy13",a);a=newl();b=newl();b.h.displayName="Beach_Bro";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=14;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=0;b.h.UQ1txt="%_MONEY";b.h.UQ1val=50;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("Trophy14",a);a=newl();b=newl();b.h.displayName="Frost_Prince";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=15;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=120;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=50;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=8;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("Trophy15",a);a=newl();b=newl();b.h.displayName="Idle_Skiller";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=16;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=99;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=20;b.h.AGI=20;b.h.WIS=20;b.h.LUK=20;b.h.Defence=0;b.h.UQ1txt="%_SKILL_EFFICIENCY";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("Trophy16",a);a=newl();b=newl();b.h.displayName="One_of_the|Divine";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=17;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=450;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=30;b.h.AGI=30;b.h.WIS=30;b.h.LUK=30;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=42;b.h.UQ2txt="%_TOTAL_DAMAGE";b.h.UQ2val=35;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("Trophy17",a);a=newl();b=newl();b.h.displayName="Master_of_Nothing";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=18;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=26;b.h.AGI=26;b.h.WIS=26;b.h.LUK=26;b.h.Defence=0;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=10;b.h.UQ2txt="%_SKILL_EXP";b.h.UQ2val=70;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("Trophy18",a);a=newl();b=newl();b.h.displayName="Nebula_Royal";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=19;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=320;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=0;b.h.UQ1txt="%_SKILL_EXP";b.h.UQ1val=50;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("Trophy19",a);a=newl();b=newl();b.h.displayName="Luckier_Lad";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=20;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=50;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=50;b.h.UQ2txt="%_LUK";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("Trophy20",a);a=newl();b=newl();b.h.displayName="Baller";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=21;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=3;b.h.Defence=3;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=3;b.h.UQ2txt="%_ALL_AFK_GAIN";b.h.UQ2val=3;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("Trophy21",a);a=newl();b=newl();b.h.displayName="Gladiator";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=22;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("Trophy22",a);a=newl();b=newl();b.h.displayName="Heroic_Spirit";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=23;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=600;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=50;b.h.UQ1txt="%_AFK_GAINS_MULTI";b.h.UQ1val=10;b.h.UQ2txt="%_DAMAGE_MULTI";b.h.UQ2val=20;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("Trophy23",a);a=newl();b=newl();b.h.displayName="Nine_Dart_Finish";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=24;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=9;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=50;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=9;b.h.UQ2txt="%_AFK_GAINS_MULTI";b.h.UQ2val=9;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("Trophy24",a);a=newl();b=newl();b.h.displayName="Luckiest_Lad";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=25;b.h.Type="TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=50;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=777;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("Trophy25",a);a=newl();b=newl();b.h.displayName="Replica_Trophy";b.h.sellPrice=1e10;b.h.typeGen="aTrophy";b.h.ID=0;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("TrophyReplica0",a);a=newl();b=newl();b.h.displayName="King_of_Food";b.h.sellPrice=1e4;b.h.typeGen="aTrophy";b.h.ID=1;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=25;b.h.UQ1txt="%_FOOD_EFFECT";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("TrophyReplica1",a);a=newl();b=newl();b.h.displayName="Lucky_Lad";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=2;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=7;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=7;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("TrophyReplica2",a);a=newl();b=newl();b.h.displayName="Club_Member";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=3;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=5;b.h.Defence=5;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("TrophyReplica3",a);a=newl();b=newl();b.h.displayName="I_Made_This_Game";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=4;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_PLAYER_HEIGHT";b.h.UQ1val=100;b.h.UQ2txt="%_RED_COLOURING";b.h.UQ2val=42;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("TrophyReplica4",a);a=newl();b=newl();b.h.displayName="Dice_Dynamo";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=5;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=5;b.h.Defence=0;b.h.UQ1txt="%_LUK";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("TrophyReplica5",a);a=newl();b=newl();b.h.displayName="Blunder_Hero";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=6;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=15;b.h.UQ1txt="%_SKILL_AFK_GAIN";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("TrophyReplica6",a);a=newl();b=newl();b.h.displayName="Original_Gamer";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=7;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=2;b.h.AGI=2;b.h.WIS=2;b.h.LUK=2;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("TrophyReplica7",a);a=newl();b=newl();b.h.displayName="Trailblazer";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=8;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=3;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("TrophyReplica8",a);a=newl();b=newl();b.h.displayName="Ultra_Unboxer";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=9;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=3;b.h.Defence=3;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("TrophyReplica9",a);a=newl();b=newl();b.h.displayName="Critter_Baron";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=10;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=20;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_AGI";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("TrophyReplica10",a);a=newl();b=newl();b.h.displayName="YumYum_Sheriff";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=11;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=8;b.h.AGI=8;b.h.WIS=8;b.h.LUK=8;b.h.Defence=25;b.h.UQ1txt="%_BOSS_DAMAGE";b.h.UQ1val=12;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("TrophyReplica11",a);a=newl();b=newl();b.h.displayName="Megalodon";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=12;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=15;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=30;b.h.UQ1txt="%_CRIT_CHANCE";b.h.UQ1val=15;b.h.UQ2txt="%_TOTAL_DAMAGE";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("TrophyReplica12",a);a=newl();b=newl();b.h.displayName="Club_Maestro";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=13;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=20;b.h.Defence=20;b.h.UQ1txt="%_SKILL_EXP";b.h.UQ1val=35;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("TrophyReplica13",a);a=newl();b=newl();b.h.displayName="Beach_Bro";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=14;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=0;b.h.UQ1txt="%_MONEY";b.h.UQ1val=50;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("TrophyReplica14",a);a=newl();b=newl();b.h.displayName="Frost_Prince";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=15;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=50;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=8;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("TrophyReplica15",a);a=newl();b=newl();b.h.displayName="Idle_Skiller";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=16;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=20;b.h.AGI=20;b.h.WIS=20;b.h.LUK=20;b.h.Defence=0;b.h.UQ1txt="%_SKILL_EFFICIENCY";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("TrophyReplica16",a);a=newl();b=newl();b.h.displayName="One_of_the|Divine";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=17;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=30;b.h.AGI=30;b.h.WIS=30;b.h.LUK=30;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=42;b.h.UQ2txt="%_TOTAL_DAMAGE";b.h.UQ2val=35;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("TrophyReplica17",a);a=newl();b=newl();b.h.displayName="Master_of_Nothing";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=18;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=26;b.h.AGI=26;b.h.WIS=26;b.h.LUK=26;b.h.Defence=0;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=10;b.h.UQ2txt="%_SKILL_EXP";b.h.UQ2val=70;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("TrophyReplica18",a);a=newl();b=newl();b.h.displayName="Nebula_Royal";b.h.sellPrice=69;b.h.typeGen="aTrophy";b.h.ID=19;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=0;b.h.UQ1txt="%_SKILL_EXP";b.h.UQ1val=50;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("TrophyReplica19",a);a=newl();b=newl();b.h.displayName="Luckier_Lad";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=20;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=50;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=50;b.h.UQ2txt="%_LUK";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("TrophyReplica20",a);a=newl();b=newl();b.h.displayName="Baller";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=21;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=3;b.h.Defence=3;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=3;b.h.UQ2txt="%_ALL_AFK_GAIN";b.h.UQ2val=3;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("TrophyReplica21",a);a=newl();b=newl();b.h.displayName="Gladiator";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=22;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("TrophyReplica22",a);a=newl();b=newl();b.h.displayName="Heroic_Spirit";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=23;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=50;b.h.UQ1txt="%_AFK_GAINS_MULTI";b.h.UQ1val=10;b.h.UQ2txt="%_DAMAGE_MULTI";b.h.UQ2val=20;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("TrophyReplica23",a);a=newl();b=newl();b.h.displayName="Nine_Dart_Finish";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=24;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=9;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=50;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=9;b.h.UQ2txt="%_AFK_GAINS_MULTI";b.h.UQ2val=9;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("TrophyReplica24",a);a=newl();b=newl();b.h.displayName="Nine_Dart_Finish";b.h.sellPrice=777;b.h.typeGen="aTrophy";b.h.ID=25;b.h.Type="REPLICA_TROPHY";b.h.lvReqToCraft="1";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=9;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=777;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("TrophyReplica25",a);a=newl();b=newl();b.h.displayName="Riftwalker|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=1;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=6;b.h.STR=8;b.h.AGI=8;b.h.WIS=8;b.h.LUK=8;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=50;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag1",a);a=newl();b=newl();b.h.displayName="Lava's_Awesome|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=2;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=100;b.h.STR=200;b.h.AGI=200;b.h.WIS=200;b.h.LUK=200;b.h.Defence=3;b.h.UQ1txt="%_SKILL";b.h.UQ1val=20;b.h.UQ2txt="%_POWER_OF_WILL";b.h.UQ2val=15;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag2",a);a=newl();b=newl();b.h.displayName="Balling_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=3;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=40;b.h.Defence=20;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=40;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag3",a);a=newl();b=newl();b.h.displayName="Vman_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=4;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="BEGINNER";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=30;b.h.Defence=0;b.h.UQ1txt="%_MULTIKILL_PER_TIER";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag4",a);a=newl();b=newl();b.h.displayName="Spring_Flowers|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=5;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=4;b.h.AGI=4;b.h.WIS=4;b.h.LUK=4;b.h.Defence=0;b.h.UQ1txt="%_SKILL_EXP";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag5",a);a=newl();b=newl();b.h.displayName="Trash_Tuna|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=6;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=30;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_FISHING_XP_GAIN";b.h.UQ1val=200;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag6b",a);a=newl();b=newl();b.h.displayName="Island_Adventurer|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=7;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=12;b.h.STR=12;b.h.AGI=12;b.h.WIS=12;b.h.LUK=12;b.h.Defence=0;b.h.UQ1txt="%_FIGHT_AFK_GAIN";b.h.UQ1val=10;b.h.UQ2txt="%_FISHIN_EFFICINCY";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag7",a);a=newl();b=newl();b.h.displayName="Summer_Shovel|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=8;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=4;b.h.AGI=4;b.h.WIS=4;b.h.LUK=4;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=15;b.h.UQ2txt="%_ALL_STATS";b.h.UQ2val=4;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag8",a);a=newl();b=newl();b.h.displayName="Falloween|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=9;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=10;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MINING_XP_GAIN";b.h.UQ1val=25;b.h.UQ2txt="%_SKILL_AFK_GAIN";b.h.UQ2val=3;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag9",a);a=newl();b=newl();b.h.displayName="3rd_Anniversary|IdleOn_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=10;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=3;b.h.Defence=3;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=3;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=3;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag10",a);a=newl();b=newl();b.h.displayName="Nightshade|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=11;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=4;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag11",a);a=newl();b=newl();b.h.displayName="Megafeather|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=12;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag12",a);a=newl();b=newl();b.h.displayName="Timeless|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=13;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=40;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag13",a);a=newl();b=newl();b.h.displayName="Snowflake|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=14;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=5;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=3;b.h.UQ2txt="%_DAMAGE_MULTI";b.h.UQ2val=3;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag14",a);a=newl();b=newl();b.h.displayName="Frostyman|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=15;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=6;b.h.AGI=6;b.h.WIS=6;b.h.LUK=6;b.h.Defence=25;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=25;b.h.UQ2txt="%_DAMAGE_MULTI";b.h.UQ2val=15;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag15",a);a=newl();b=newl();b.h.displayName="Lovely_Day|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=16;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=8;b.h.AGI=8;b.h.WIS=8;b.h.LUK=0;b.h.Defence=25;b.h.UQ1txt="%_DAMAGE_BONUS";b.h.UQ1val=60;b.h.UQ2txt="%_MONEY";b.h.UQ2val=200;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag16",a);a=newl();b=newl();b.h.displayName="Spectacular_4th|Year_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=17;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=4;b.h.AGI=4;b.h.WIS=4;b.h.LUK=4;b.h.Defence=44;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=144;b.h.UQ2txt="%_ALL_AFK_GAIN";b.h.UQ2val=44;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag17",a);a=newl();b=newl();b.h.displayName="4th_Anniversary|IdleOn_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=18;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=4;b.h.AGI=4;b.h.WIS=4;b.h.LUK=4;b.h.Defence=4;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=14;b.h.UQ2txt="%_DAMAGE_MULTI";b.h.UQ2val=14;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag18",a);a=newl();b=newl();b.h.displayName="Aethermoon|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=19;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=20;b.h.AGI=20;b.h.WIS=20;b.h.LUK=0;b.h.Defence=30;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=80;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag19",a);a=newl();b=newl();b.h.displayName="Deadbones|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=20;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=7;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=10;b.h.Defence=15;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=25;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=35;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag20",a);a=newl();b=newl();b.h.displayName="Treasure|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=21;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=7;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=10;b.h.Defence=15;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=25;b.h.UQ2txt="%_MONEY";b.h.UQ2val=25;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag21",a);a=newl();b=newl();b.h.displayName="Tome_Apprentice|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=22;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=5;b.h.UQ2txt="%_MONEY";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag22",a);a=newl();b=newl();b.h.displayName="Tome_Journeyman|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=23;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_FIGHT_AFK_GAIN";b.h.UQ1val=7;b.h.UQ2txt="%_SKILL_AFK_GAIN";b.h.UQ2val=7;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag23",a);a=newl();b=newl();b.h.displayName="Tome_Expert|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=24;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=10;b.h.UQ2txt="%_MOB_RESPAWN";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag24",a);a=newl();b=newl();b.h.displayName="Tome_Elite|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=25;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=12;b.h.UQ2txt="%_MULTIKILL_PER_TIER";b.h.UQ2val=12;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag25",a);a=newl();b=newl();b.h.displayName="Tome_Pro|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=26;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=15;b.h.UQ2txt="%_BONUS_MONEY";b.h.UQ2val=15;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag26",a);a=newl();b=newl();b.h.displayName="Tome_Master|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=27;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_BONUS_KILLS";b.h.UQ1val=17;b.h.UQ2txt="%_ALL_STATS";b.h.UQ2val=17;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag27",a);a=newl();b=newl();b.h.displayName="Tome_Legend|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=28;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=20;b.h.UQ2txt="%_AFK_GAINS_MULTI";b.h.UQ2val=20;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag28",a);a=newl();b=newl();b.h.displayName="Reliquarium|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=29;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=20;b.h.UQ2txt="%_AFK_GAINS_MULTI";b.h.UQ2val=20;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag29",a);a=newl();b=newl();b.h.displayName="Cropfall|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=30;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_BONUS_CLASS_EXP";b.h.UQ1val=25;b.h.UQ2txt="%_XP_FROM_MONSTERS";b.h.UQ2val=80;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag30",a);a=newl();b=newl();b.h.displayName="Gingerbread|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=31;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=30;b.h.UQ2txt="%_TOTAL_DAMAGE";b.h.UQ2val=50;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag31",a);a=newl();b=newl();b.h.displayName="Sweet_Chocolate|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=32;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=25;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag32",a);a=newl();b=newl();b.h.displayName="Pot_of_Gold|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=33;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=30;b.h.UQ2txt="%_MONEY";b.h.UQ2val=100;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag33",a);a=newl();b=newl();b.h.displayName="Emerald|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=34;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_KILLS_IN_WORLD_6";b.h.UQ1val=25;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag34",a);a=newl();b=newl();b.h.displayName="5th_Anniversary|IdleOn_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=35;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=5;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=5;b.h.UQ2txt="%_DAMAGE_MULTI";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag35",a);a=newl();b=newl();b.h.displayName="Wonderful_5th|Year_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=36;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=55;b.h.UQ1txt="%_KILLS_IN_WORLD_7";b.h.UQ1val=25;b.h.UQ2txt="%_CLASS_EXP_MULTI";b.h.UQ2val=55;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag36",a);a=newl();b=newl();b.h.displayName="Grand_Egg|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=37;b.h.Type="NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=20;b.h.STR=40;b.h.AGI=40;b.h.WIS=40;b.h.LUK=40;b.h.Defence=70;b.h.UQ1txt="%_AFK_GAINS_MULTI";b.h.UQ1val=25;b.h.UQ2txt="%_BIGGER_DAMAGE";b.h.UQ2val=25;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametag37",a);a=newl();b=newl();b.h.displayName="Replica_Nametag";b.h.sellPrice=5e11;b.h.typeGen="aNametag";b.h.ID=0;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica0",a);a=newl();b=newl();b.h.displayName="Riftwalker|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=1;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=6;b.h.STR=8;b.h.AGI=8;b.h.WIS=8;b.h.LUK=8;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=50;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica1",a);a=newl();b=newl();b.h.displayName="Lava's_Awesome|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=2;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=100;b.h.STR=200;b.h.AGI=200;b.h.WIS=200;b.h.LUK=200;b.h.Defence=3;b.h.UQ1txt="%_SKILL";b.h.UQ1val=20;b.h.UQ2txt="%_POWER_OF_WILL";b.h.UQ2val=15;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica2",a);a=newl();b=newl();b.h.displayName="Balling_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=3;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=40;b.h.Defence=20;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=40;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica3",a);a=newl();b=newl();b.h.displayName="Vman_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=4;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=30;b.h.Defence=0;b.h.UQ1txt="%_MULTIKILL_PER_TIER";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica4",a);a=newl();b=newl();b.h.displayName="Spring_Flowers|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=5;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=4;b.h.AGI=4;b.h.WIS=4;b.h.LUK=4;b.h.Defence=0;b.h.UQ1txt="%_SKILL_EXP";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica5",a);a=newl();b=newl();b.h.displayName="Trash_Tuna|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=6;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=30;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_FISHING_XP_GAIN";b.h.UQ1val=200;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica6",a);a=newl();b=newl();b.h.displayName="Island_Adventurer|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=7;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=12;b.h.STR=12;b.h.AGI=12;b.h.WIS=12;b.h.LUK=12;b.h.Defence=0;b.h.UQ1txt="%_FIGHT_AFK_GAIN";b.h.UQ1val=10;b.h.UQ2txt="%_FISHIN_EFFICINCY";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica7",a);a=newl();b=newl();b.h.displayName="Summer_Shovel|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=8;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=4;b.h.AGI=4;b.h.WIS=4;b.h.LUK=4;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=15;b.h.UQ2txt="%_ALL_STATS";b.h.UQ2val=4;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica8",a);a=newl();b=newl();b.h.displayName="Falloween|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=9;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=10;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MINING_XP_GAIN";b.h.UQ1val=25;b.h.UQ2txt="%_SKILL_AFK_GAIN";b.h.UQ2val=3;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica9",a);a=newl();b=newl();b.h.displayName="3rd_Anniversary|IdleOn_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=10;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=3;b.h.AGI=3;b.h.WIS=3;b.h.LUK=3;b.h.Defence=3;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=3;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=3;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica10",a);a=newl();b=newl();b.h.displayName="Nightshade|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=11;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=1;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=4;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica11",a);a=newl();b=newl();b.h.displayName="Megafeather|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=12;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=20;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica12",a);a=newl();b=newl();b.h.displayName="Timeless|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=13;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=10;b.h.AGI=10;b.h.WIS=10;b.h.LUK=10;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=40;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica13",a);a=newl();b=newl();b.h.displayName="Snowflake|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=14;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=5;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=3;b.h.UQ2txt="%_DAMAGE_MULTI";b.h.UQ2val=3;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica14",a);a=newl();b=newl();b.h.displayName="Frostyman|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=15;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=6;b.h.AGI=6;b.h.WIS=6;b.h.LUK=6;b.h.Defence=25;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=25;b.h.UQ2txt="%_DAMAGE_MULTI";b.h.UQ2val=15;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica15",a);a=newl();b=newl();b.h.displayName="Lovely_Day|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=16;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=8;b.h.AGI=8;b.h.WIS=8;b.h.LUK=0;b.h.Defence=25;b.h.UQ1txt="%_DAMAGE_BONUS";b.h.UQ1val=60;b.h.UQ2txt="%_MONEY";b.h.UQ2val=200;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica16",a);a=newl();b=newl();b.h.displayName="Spectacular_4th|Year_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=17;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=4;b.h.AGI=4;b.h.WIS=4;b.h.LUK=4;b.h.Defence=44;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=144;b.h.UQ2txt="%_ALL_AFK_GAIN";b.h.UQ2val=44;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica17",a);a=newl();b=newl();b.h.displayName="4th_Anniversary|IdleOn_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=18;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=4;b.h.AGI=4;b.h.WIS=4;b.h.LUK=4;b.h.Defence=4;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=14;b.h.UQ2txt="%_DAMAGE_MULTI";b.h.UQ2val=14;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica18",a);a=newl();b=newl();b.h.displayName="Aethermoon|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=19;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=20;b.h.AGI=20;b.h.WIS=20;b.h.LUK=0;b.h.Defence=30;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=80;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica19",a);a=newl();b=newl();b.h.displayName="Deadbones|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=20;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=7;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=10;b.h.Defence=15;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=25;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=35;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica20",a);a=newl();b=newl();b.h.displayName="Treasure|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=21;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=4;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=7;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=10;b.h.Defence=15;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=25;b.h.UQ2txt="%_MONEY";b.h.UQ2val=25;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica21",a);a=newl();b=newl();b.h.displayName="Tome_Apprentice|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=22;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=1;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=5;b.h.UQ2txt="%_MONEY";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica22",a);a=newl();b=newl();b.h.displayName="Tome_Journeyman|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=23;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_FIGHT_AFK_GAIN";b.h.UQ1val=7;b.h.UQ2txt="%_SKILL_AFK_GAIN";b.h.UQ2val=7;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica23",a);a=newl();b=newl();b.h.displayName="Tome_Expert|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=24;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_TOTAL_DAMAGE";b.h.UQ1val=10;b.h.UQ2txt="%_MOB_RESPAWN";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica24",a);a=newl();b=newl();b.h.displayName="Tome_Elite|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=25;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=3;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=12;b.h.UQ2txt="%_MULTIKILL_PER_TIER";b.h.UQ2val=12;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica25",a);a=newl();b=newl();b.h.displayName="Tome_Pro|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=26;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=4;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=15;b.h.UQ2txt="%_BONUS_MONEY";b.h.UQ2val=15;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica26",a);a=newl();b=newl();b.h.displayName="Tome_Master|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=27;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_BONUS_KILLS";b.h.UQ1val=17;b.h.UQ2txt="%_ALL_STATS";b.h.UQ2val=17;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica27",a);a=newl();b=newl();b.h.displayName="Tome_Legend|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=28;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=20;b.h.UQ2txt="%_AFK_GAINS_MULTI";b.h.UQ2val=20;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica28",a);a=newl();b=newl();b.h.displayName="Reliquarium|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=29;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=20;b.h.UQ2txt="%_AFK_GAINS_MULTI";b.h.UQ2val=20;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica29",a);a=newl();b=newl();b.h.displayName="Cropfall|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=30;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=10;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_BONUS_CLASS_EXP";b.h.UQ1val=25;b.h.UQ2txt="%_XP_FROM_MONSTERS";b.h.UQ2val=80;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica30",a);a=newl();b=newl();b.h.displayName="Gingerbread|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=31;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=30;b.h.UQ2txt="%_TOTAL_DAMAGE";b.h.UQ2val=50;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica31",a);a=newl();b=newl();b.h.displayName="Sweet_Chocolate|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=32;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=25;b.h.UQ2txt="%_DROP_RATE";b.h.UQ2val=10;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica32",a);a=newl();b=newl();b.h.displayName="Pot_of_Gold|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=33;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=30;b.h.UQ2txt="%_MONEY";b.h.UQ2val=100;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica33",a);a=newl();b=newl();b.h.displayName="Emerald|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=34;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_KILLS_IN_WORLD_6";b.h.UQ1val=25;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica34",a);a=newl();b=newl();b.h.displayName="5th_Anniversary|IdleOn_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=35;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=5;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=5;b.h.UQ2txt="%_DAMAGE_MULTI";b.h.UQ2val=5;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica35",a);a=newl();b=newl();b.h.displayName="Wonderful_5th|Year_Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=36;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=5;b.h.STR=5;b.h.AGI=5;b.h.WIS=5;b.h.LUK=5;b.h.Defence=55;b.h.UQ1txt="%_KILLS_IN_WORLD_7";b.h.UQ1val=25;b.h.UQ2txt="%_CLASS_EXP_MULTI";b.h.UQ2val=55;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica36",a);a=newl();b=newl();b.h.displayName="Grand_Egg|Nametag";b.h.sellPrice=1;b.h.typeGen="aNametag";b.h.ID=37;b.h.Type="REPLICA_NAMETAG";b.h.lvReqToCraft="55";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=20;b.h.STR=40;b.h.AGI=40;b.h.WIS=40;b.h.LUK=40;b.h.Defence=70;b.h.UQ1txt="%_AFK_GAINS_MULTI";b.h.UQ1val=25;b.h.UQ2txt="%_BIGGER_DAMAGE";b.h.UQ2val=25;b.h.Upgrade_Slots_Left=0;a.h.equip=b;O.addNewEquip("EquipmentNametagReplica37",a);a=newl();b=newl();b.h.displayName="Smitty's_Bubble|Blowing_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=35;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_SKILL_EFFICIENCY";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats31",a);a=newl();b=newl();b.h.displayName="Bandit_Bob_Mask";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=36;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats32",a);a=newl();b=newl();b.h.displayName="Paper_Bag";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=37;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_BONUS_MONEY";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats33",a);a=newl();b=newl();b.h.displayName="Parasite";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=38;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats34",a);a=newl();b=newl();b.h.displayName="Diamond_Horns";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=39;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=8;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=7;a.h.equip=b;O.addNewEquip("EquipmentHats35",a);a=newl();b=newl();b.h.displayName="Halloween_Pumpkin";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=40;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats36",a);a=newl();b=newl();b.h.displayName="Pardoned_Turkey";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=43;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats40",a);a=newl();b=newl();b.h.displayName="Hotdog_Hero";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=41;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_SKILL_EFFICIENCY";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats37",a);a=newl();b=newl();b.h.displayName="Invisible_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=1;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats38",a);a=newl();b=newl();b.h.displayName="Strawbiggy";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=49;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=4;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats46",a);a=newl();b=newl();b.h.displayName="Pop_Cat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=50;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats47",a);a=newl();b=newl();b.h.displayName="Dairy_Dunk";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=51;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_SKILL_EFFICIENCY";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats48",a);a=newl();b=newl();b.h.displayName="The_Classic";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=52;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_AFK_GAINS_MULTI";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats49",a);a=newl();b=newl();b.h.displayName="Green_Beanie";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=53;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=3;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats50",a);a=newl();b=newl();b.h.displayName="Snowman";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=46;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats43",a);a=newl();b=newl();b.h.displayName="Giftmas_Tree";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=48;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats45",a);a=newl();b=newl();b.h.displayName="Big_Bunny";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=60;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=11;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats57",a);a=newl();b=newl();b.h.displayName="Fluffy_Ramsy";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=65;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=11;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats62",a);a=newl();b=newl();b.h.displayName="The_Red_Boaty";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=73;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=2;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats65",a);a=newl();b=newl();b.h.displayName="Giftmas_Snoozy|Cap";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=77;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_ALL_AFK_GAIN";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats69",a);a=newl();b=newl();b.h.displayName="Corgi_Topper";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=88;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats80",a);a=newl();b=newl();b.h.displayName="Husky_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=116;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats109",a);a=newl();b=newl();b.h.displayName="Siege_Captain_Cap";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=89;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats81",a);a=newl();b=newl();b.h.displayName="Ele_Sorcerer|Pointed_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=90;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats82",a);a=newl();b=newl();b.h.displayName="Bedsheet_with|Holes";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=92;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_BONUS_KILLS";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats85",a);a=newl();b=newl();b.h.displayName="Carrotman_Mask";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=93;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats86",a);a=newl();b=newl();b.h.displayName="Glublin_Mask";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=94;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats87",a);a=newl();b=newl();b.h.displayName="Bloque_Mask";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=95;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_BONUS_KILLS";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats88",a);a=newl();b=newl();b.h.displayName="Borzoi_Topper";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=96;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats89",a);a=newl();b=newl();b.h.displayName="Straw_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=99;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats90",a);a=newl();b=newl();b.h.displayName="Wig_Bandana";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=100;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_SKILL_EFFICIENCY";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats91",a);a=newl();b=newl();b.h.displayName="Funky_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=101;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_AFK_GAINS_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats92",a);a=newl();b=newl();b.h.displayName="Reinforced_Headband";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=102;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats93",a);a=newl();b=newl();b.h.displayName="Shogun_Helmet";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=103;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DIVINITY_EXP";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats94",a);a=newl();b=newl();b.h.displayName="Gilded_Headband";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=104;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats95",a);a=newl();b=newl();b.h.displayName="Bamboo_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=105;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats96",a);a=newl();b=newl();b.h.displayName="Festive_Beast_Mask";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=106;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_BONUS_MONEY";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats97",a);a=newl();b=newl();b.h.displayName="Heiress_Headdress";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=107;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MASTERCLASS_DROPS";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats98",a);a=newl();b=newl();b.h.displayName="Spirited_Mane";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=108;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_AFK_GAINS_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats99",a);a=newl();b=newl();b.h.displayName="Fiery_Mane";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=109;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats100",a);a=newl();b=newl();b.h.displayName="Guardian_Mane";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=110;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats101",a);a=newl();b=newl();b.h.displayName="Fanned_Blossomage";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=111;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE_MULTI";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats102",a);a=newl();b=newl();b.h.displayName="Dainty_Brim";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=112;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_MASTERCLASS_DROPS";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats103",a);a=newl();b=newl();b.h.displayName="Charcoal_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=113;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats104",a);a=newl();b=newl();b.h.displayName="Yellow_Beanie";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=117;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_BONUS_KILLS";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats110",a);a=newl();b=newl();b.h.displayName="Deathbringer|Hood_of_Death";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=119;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_EXTRA_BONES";b.h.UQ1val=25;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats112",a);a=newl();b=newl();b.h.displayName="Pink_Beanie";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=120;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_XP_FROM_MONSTERS";b.h.UQ1val=5;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats113",a);a=newl();b=newl();b.h.displayName="True_Crown";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=121;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=150;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats114",a);a=newl();b=newl();b.h.displayName="Celebration_Mane";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=123;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats115",a);a=newl();b=newl();b.h.displayName="Goldberry";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=122;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats116",a);a=newl();b=newl();b.h.displayName="Orange_Beanie";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=124;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_ALL_STATS";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats117",a);a=newl();b=newl();b.h.displayName="Windwalker_Hood";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=125;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DUST_MULTI";b.h.UQ1val=25;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats118",a);a=newl();b=newl();b.h.displayName="Umbrella_Brim";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=127;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_BONUS_MONEY";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats120",a);a=newl();b=newl();b.h.displayName="Bloo_Creamer";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=128;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_SKILL_EXP";b.h.UQ1val=15;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats121",a);a=newl();b=newl();b.h.displayName="Arcanist_Crown";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=129;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_EXTRA_TACHYONS";b.h.UQ1val=25;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats122",a);a=newl();b=newl();b.h.displayName="Alpine_Beanie";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=131;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=10;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats124",a);a=newl();b=newl();b.h.displayName="Rudolph_Antlers";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=132;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats125",a);a=newl();b=newl();b.h.displayName="Helper_Elf_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=133;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DIVINITY_EXP";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats126",a);a=newl();b=newl();b.h.displayName="Seal_Team|Skipper_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=134;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=1;b.h.AGI=1;b.h.WIS=1;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=100;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats127",a);a=newl();b=newl();b.h.displayName="Lovely_Top_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=135;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats128",a);a=newl();b=newl();b.h.displayName="Polkadot_Beanie";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=136;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=1;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats129",a);a=newl();b=newl();b.h.displayName="Leprechaun_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=137;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=0;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=2;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats130",a);a=newl();b=newl();b.h.displayName="Lucky_Ducky_Brim";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=138;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_DAMAGE_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats131",a);a=newl();b=newl();b.h.displayName="Time_Traveler|Top_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=139;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=30;b.h.UQ2txt="%_BONUS_KILLS";b.h.UQ2val=30;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats132",a);a=newl();b=newl();b.h.displayName="Native_Headdress";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=140;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_SKILL_EXP";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats133",a);a=newl();b=newl();b.h.displayName="Starry_Hairpins";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=141;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_DROP_RATE";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats134",a);a=newl();b=newl();b.h.displayName="Blonde_Hairpiece";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=142;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="5";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="%_CLASS_EXP_MULTI";b.h.UQ1val=1;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats135",a);a=newl();b=newl();b.h.displayName="Bronze_Tournament|Spike_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=143;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="69420";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats136",a);a=newl();b=newl();b.h.displayName="Silver_Tournament|Spike_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=144;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="69420";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats137",a);a=newl();b=newl();b.h.displayName="Gold_Tournament|Spike_Hat";b.h.sellPrice=1;b.h.typeGen="aHelmetMTX";b.h.ID=145;b.h.Type="PREMIUM_HELMET";b.h.lvReqToCraft="69420";a.h.common=b;b=newl();b.h.lvReqToEquip=1;b.h.Class="ALL";b.h.Speed=0;b.h.Reach=0;b.h.Weapon_Power=0;b.h.STR=0;b.h.AGI=0;b.h.WIS=0;b.h.LUK=1;b.h.Defence=0;b.h.UQ1txt="0";b.h.UQ1val=0;b.h.UQ2txt="0";b.h.UQ2val=0;b.h.Upgrade_Slots_Left=5;a.h.equip=b;O.addNewEquip("EquipmentHats138",a);a=newl();b=newl();b.h.displayName="CardsA0";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="mushG";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsA0",a);a=newl();b=newl();b.h.displayName="CardsA1";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="mushR";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsA1",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="frogG";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsA2",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="beanG";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsA3",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="slimeG";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsA4",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="snakeG";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsA5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="carrotO";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsA6",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="goblinG";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsA7",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="plank";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsA8",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="frogBIG";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsA9",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="poopSmall";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsA10",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="ratB";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsA11",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="branch";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsA12",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="acorn";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsA13",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Crystal0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsA14",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="poopD";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsA15",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="mushW";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsA16",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="jarSand";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsB1",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="mimicA";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsB2",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="crabcake";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsB3",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="coconut";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsB4",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="sandcastle";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsB5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="pincermin";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsB6",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="potato";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsB7",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="steak";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsB8",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="moonman";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsB9",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="sandgiant";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsB10",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="snailZ";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsB11",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="shovelR";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsB12",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Crystal1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsB13",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bandit_Bob";b.h.desc_line2="Bandit_Bob";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsB14",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Copper";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsC1",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Iron";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsC2",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Gold";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsC3",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="OakTree";b.h.desc_line2="Oak_Tree";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsC4",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="BirchTree";b.h.desc_line2="Birch_Tree";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsC5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="JungleTree";b.h.desc_line2="Jungle_Tree";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsC6",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="ForestTree";b.h.desc_line2="Forest_Tree";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsC7",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Fish1";b.h.desc_line2="Goldfish";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsC8",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Fish2";b.h.desc_line2="Snail";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsC9",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Fish3";b.h.desc_line2="Jellyfish";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsC10",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bug1";b.h.desc_line2="Flies";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsC11",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bug2";b.h.desc_line2="Butterflies";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsC12",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="CopperBar";b.h.desc_line2="Copper_Bar";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsC13",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="IronBar";b.h.desc_line2="Iron_Bar";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsC14",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="GoldBar";b.h.desc_line2="Gold_Bar";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsC15",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="ForgeA";b.h.desc_line2="Fire_Forge";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsC16",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Dementia";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsD1",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Plat";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsD2",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Void";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsD3",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Lustre";b.h.desc_line2="Oak_Tree";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsD4",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="ToiletTree";b.h.desc_line2="Birch_Tree";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsD5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="StumpTree";b.h.desc_line2="Jungle_Tree";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsD6",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="PalmTree";b.h.desc_line2="Forest_Tree";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsD7",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SaharanFoal";b.h.desc_line2="Saharan_Foal";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsD8",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bug4";b.h.desc_line2="Snail";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsD9",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bug3";b.h.desc_line2="Jellyfish";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsD10",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Fish4";b.h.desc_line2="Flies";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsD11",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="_";b.h.desc_line2="Butterflies";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsD12",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="_";b.h.desc_line2="Sentient_Cereal";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsD13",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="ForgeB";b.h.desc_line2="Cinder_Forge";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsD16",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SoulCard1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsD17",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SoulCard2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsD18",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="CritterCard1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsD19",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="CritterCard2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsD20",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="CritterCard3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsD21",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="sheep";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsE0",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="flake";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsE1",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="stache";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsE2",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="bloque";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsE3",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="mamoth";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsE4",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="snowball";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsE5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="penguin";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsE6",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="thermostat";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsE7",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="glass";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsE8",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="snakeB";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsE9",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="speaker";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsE10",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="eye";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsE11",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="skele";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsE12",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="skele2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsE13",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="ram";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsE14",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Crystal2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsE15",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Lustre";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF1",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Tree7";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF2",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SoulCard3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF3",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="CritterCard4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF4",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="CritterCard5";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="CritterCard6";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF6",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="CritterCard7";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF7",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bug5";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF8",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bug6";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF9",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SoulCard4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF10",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SoulCard5";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF11",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Tree8";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF12",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="AlienTree";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF13",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bug7";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF14",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bug8";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF15",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Starfire";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF16",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="CritterCard8";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF17",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="CritterCard9";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF18",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="CritterCard10";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF19",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Fish5";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF20",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Fish6";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF21",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Fish7";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF22",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Fish8";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF23",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Tree9";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF24",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Tree10";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF25",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bug9";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF26",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bug10";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF27",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SoulCard6";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF28",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Dreadlo";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF29",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Fish9";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF30",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Fish10";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF31",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Fish11";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF32",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Fish12";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF33",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Tree12";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF34",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Tree13";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF35",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SoulCard7";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF36",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bug12";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF37",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bug13";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF38",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Godshard";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF39",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Tree14";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF40",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SpelunkingCard0";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF41",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SpelunkingCard1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF42",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SpelunkingCard2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF43",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Prehistrium";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF44",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SoulCard8";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF45",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Bug14";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF46",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="CritterCard11";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF47",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SpelunkingCard3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF48",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SpelunkingCard4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF49",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SpelunkingCard5";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF50",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SpelunkingCard6";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsF51",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="mushP";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsG1",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w4a2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsG2",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w4a3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsG3",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="demonP";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsG4",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w4b1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsG5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w4b2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsG6",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w4b3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsG7",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w4b4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsG8",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w4b5";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsG9",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w4c1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsG10",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w4c2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsG11",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w4c3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsG12",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w4c4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsG13",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Crystal3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsG14",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w5a1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsH1",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w5a2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsH2",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w5a3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsH3",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w5a4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsH4",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w5a5";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsH5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w5b1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsH6",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w5b2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsH7",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w5b3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsH8",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w5b4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsH9",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w5b5";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsH10",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w5b6";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsH11",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w5c1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsH12",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w5c2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsH13",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Crystal4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsH14",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="caveB";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsH15",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="caveC";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsH16",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6a1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsI1",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6a2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsI2",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6a3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsI3",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6a4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsI4",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6a5";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsI5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6b1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsI6",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6b2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsI7",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6b3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsI8",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6b4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsI9",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6c1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsI10",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6c2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsI11",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6d1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsI12",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6d2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsI13",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w6d3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsI14",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Crystal5";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsI15",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7a1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsJ1",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7a2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsJ2",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7a3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsJ3",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7a4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsJ4",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7a5";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsJ5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7a6";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsJ6",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7a7";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsJ7",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7a8";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsJ8",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7a9";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsJ9",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7a10";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsJ10",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7a11";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsJ11",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7a12";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsJ12",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7b1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsJ13",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7b2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsJ14",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7b3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsJ15",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7b4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsJ16",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7b5";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsJ17",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7b6";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsJ18",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7b7";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsJ19",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7b8";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsJ20",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7b9";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsJ21",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7b10";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsJ22",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7b11";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsJ23",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="w7b12";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsJ24",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Crystal6";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsJ99",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="frogP";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsX0",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="frogD";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsX1",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="frogY";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsX2",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="frogGR";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsX3",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="frogGR2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsX4",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="frogGR3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsX5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="frogGR4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsX21",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="frogGG";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsX22",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="target";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsX6",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="rocky";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsX7",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="cactus";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsX8",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="steakR";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsX9",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="potatoB";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsX10",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="snakeZ";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsX11",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="snakeZ2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsX12",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="snakeZ3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsX13",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="frogR";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsX14",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="frogW";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsX15",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="totem";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsX16",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="iceknight";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsX17",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="iceBossZ";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsX18",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="iceBossZ2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsX19",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="iceBossZ3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsX20",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="ghost";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsY0",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="xmasEvent";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsY1",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="xmasEvent2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsY2",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="slimeR";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsY3",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="loveEvent";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsY4",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="loveEvent2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsY5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="loveEvent2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsY5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="sheepB";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsY6",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="snakeY";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsY7",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="EasterEvent1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsY8",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="EasterEvent2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsY9",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="crabcakeB";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsY10",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SummerEvent1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsY11",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="SummerEvent2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsY12",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="shovelY";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsY13",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="xmasEvent3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsY14",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="loveEvent3";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsY15",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="springEvent1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsY16",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="springEvent2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsY17",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="fallEvent1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsY18",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="anni4Event1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsY19",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="cropfallEvent1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsY20",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="xmasEvent4";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsY21",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="luckEvent1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsY22",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="luckEvent2";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsY23",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="anni5Event1";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsY24",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="babayaga";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ0",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="poopBig";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ1",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="wolfA";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ2",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss2A";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ3",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="wolfB";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ4",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="babaHour";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ5",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="babaMummy";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ6",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss2B";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ7",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss3A";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ8",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss3B";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ9",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss4A";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ10",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss4B";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ11",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="mini3a";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ12",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="mini4a";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ13",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="wolfC";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ14",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss2C";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ15",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss3C";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ16",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss4C";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ17",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss5A";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ18",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss5B";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ19",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss5C";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ20",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss6A";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ21",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss6B";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ22",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="Boss6C";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ23",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="mini5a";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ24",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="mini6a";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ25",a);a=newl();b=newl();b.h.displayName="DONTFILL";b.h.sellPrice=1;b.h.typeGen="dCard";b.h.ID=0;b.h.Type="CARD";b.h.lvReqToCraft="2";a.h.common=b;b=newl();b.h.desc_line1="slimeB";b.h.desc_line2="Filler";b.h.desc_line3="Filler";b.h.desc_line4="Filler";b.h.desc_line5="Filler";b.h.desc_line6="Filler";b.h.desc_line7="Filler";b.h.desc_line8="Filler";a.h.consumable=b;O.addNewQuest("CardsZ26",a);""" # fmt: skip # noqa def extract_items(dump: str) -> dict: diff --git a/mysite/consts/generated/raw_item_data.py b/mysite/consts/generated/raw_item_data.py index baab4415..63e2a749 100644 --- a/mysite/consts/generated/raw_item_data.py +++ b/mysite/consts/generated/raw_item_data.py @@ -27033,7 +27033,7 @@ "Code (Type)": "dQuest", "Type": "USABLE", "Level Required (Craft)": 15, - "Description": "Hold down to instantly gain 2 Hours of all Cavern progress and Villager exp gain!", + "Description": "Hold down to instantly gain 2 Hours of all Cavern progress and Villager exp gain! YOU CAN ONLY USE 12 PER DAY! This is because new caverns came out recently.", "Code (Name)": "Quest90" }, "Quest91": { @@ -37232,6 +37232,75 @@ "Upgrade Slots Left": 5, "Code (Name)": "EquipmentHats135" }, + "EquipmentHats136": { + "Name": "Bronze Tournament Spike Hat", + "Sell Price": 1, + "Code (Type)": "aHelmetMTX", + "Type": "PREMIUM_HELMET", + "Level Required (Craft)": 69420, + "Level Required (Equip)": 1, + "Class": "ALL", + "Speed": 0, + "Reach": 0, + "Weapon Power": 0, + "STR": 0, + "AGI": 0, + "WIS": 0, + "LUK": 1, + "Defence": 0, + "Misc 1 (Text)": "0", + "Misc 1 (Value)": 0, + "Misc 2 (Text)": "0", + "Misc 2 (Value)": 0, + "Upgrade Slots Left": 5, + "Code (Name)": "EquipmentHats136" + }, + "EquipmentHats137": { + "Name": "Silver Tournament Spike Hat", + "Sell Price": 1, + "Code (Type)": "aHelmetMTX", + "Type": "PREMIUM_HELMET", + "Level Required (Craft)": 69420, + "Level Required (Equip)": 1, + "Class": "ALL", + "Speed": 0, + "Reach": 0, + "Weapon Power": 0, + "STR": 0, + "AGI": 0, + "WIS": 0, + "LUK": 1, + "Defence": 0, + "Misc 1 (Text)": "0", + "Misc 1 (Value)": 0, + "Misc 2 (Text)": "0", + "Misc 2 (Value)": 0, + "Upgrade Slots Left": 5, + "Code (Name)": "EquipmentHats137" + }, + "EquipmentHats138": { + "Name": "Gold Tournament Spike Hat", + "Sell Price": 1, + "Code (Type)": "aHelmetMTX", + "Type": "PREMIUM_HELMET", + "Level Required (Craft)": 69420, + "Level Required (Equip)": 1, + "Class": "ALL", + "Speed": 0, + "Reach": 0, + "Weapon Power": 0, + "STR": 0, + "AGI": 0, + "WIS": 0, + "LUK": 1, + "Defence": 0, + "Misc 1 (Text)": "0", + "Misc 1 (Value)": 0, + "Misc 2 (Text)": "0", + "Misc 2 (Value)": 0, + "Upgrade Slots Left": 5, + "Code (Name)": "EquipmentHats138" + }, "CardsA0": { "Name": "CardsA0", "Sell Price": 1, @@ -39734,5 +39803,5 @@ "Description": "slimeB", "Code (Name)": "CardsZ26" }, - "_hash": "dbe8a4fca3349eaaef065570aa15fe225b4ab451b8e48a6f80301164bd5d3f33" + "_hash": "db53dc8ad5d0dab558dbb4ce2c60cae324ae1fdde06465a88fef338ec4c03b3e" } diff --git a/mysite/static/items.yaml b/mysite/static/items.yaml index 5fef43cd..729ea0f7 100644 --- a/mysite/static/items.yaml +++ b/mysite/static/items.yaml @@ -274,6 +274,9 @@ EquipmentHats132: Time Traveler Top Hat EquipmentHats133: Native Headdress EquipmentHats134: Starry Hairpins EquipmentHats135: Blonde Hairpiece +EquipmentHats136: Bronze Tournament Spike Hat +EquipmentHats137: Silver Tournament Spike Hat +EquipmentHats138: Gold Tournament Spike Hat EquipmentHatsBeg1: Ice Cream Sundae TestObj13: Viking Cap TestObj14: Trojan Helmet From 827e54a78ff26bf00a90bcd99c6cdd06ac136470 Mon Sep 17 00:00:00 2001 From: TwoSpookyBoos Date: Thu, 28 May 2026 05:38:41 -0500 Subject: [PATCH 7/7] PROD patch notes --- changelog/CHANGELOG | 1 + mysite/templates/sidebar.html | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/changelog/CHANGELOG b/changelog/CHANGELOG index 093bf360..f1575840 100644 --- a/changelog/CHANGELOG +++ b/changelog/CHANGELOG @@ -1,3 +1,4 @@ +2026-05-28: New W7 sections: Dancing Coral, Coral Kid. Gstack autogenerated final tier. 2026-05-21: New W7 sections: Zenith Market and Research 2026-04-28: Updates from patch v2.503 2026-04-16: Updates from patch v2.502 diff --git a/mysite/templates/sidebar.html b/mysite/templates/sidebar.html index 4cb677d7..6e052e2b 100644 --- a/mysite/templates/sidebar.html +++ b/mysite/templates/sidebar.html @@ -7,13 +7,13 @@ {% if beta %} Heads up! You're on the beta-testing page. If you run into problems, try heading back to the Live Page
- Beta testing: 2026-05-21: See Discord #beta-blog channel! + Beta testing: 2026-05-28: See Discord #beta-blog channel! {% else %} To try out the beta site, head to the Beta Page {% endif %}

- Latest Update 2026-05-21: See Discord #release-notes channel! + Latest Update 2026-05-28: See Discord #release-notes channel!