Rydotee

Legendary Crystals

Jun 24th, 2019
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.24 KB | None | 0 0
  1. wOS:RegisterItem( {
  2. Name = "LEGENDARY Crystal (Rex's Red Corrupt)",
  3. Description = "Legendary Crystal.",
  4. Type = WOSTYPE.CRYSTAL,
  5. Rarity = 0,
  6. Model = "models/red6/red6.mdl",
  7. OnEquip = function( wep )
  8. wep.CustomSettings[ "Corrupted" ] = true
  9. wep.UseColor = Color( 185, 30, 30 )
  10. end,
  11. } )
  12.  
  13. wOS:RegisterItem( {
  14. Name = "LEGENDARY Crystal (Violet)",
  15. Description = "Legendary Crystal.",
  16. Type = WOSTYPE.CRYSTAL,
  17. Rarity = 0,
  18. Model = "models/purple4/purple4.mdl",
  19. OnEquip = function( wep )
  20. wep.CustomSettings[ "Corrupted" ] = true
  21. wep.UseColor = Color( 89, 17, 176 )
  22. end,
  23. } )
  24.  
  25. wOS:RegisterItem( {
  26. Name = "LEGENDARY Crystal (Moonstone)",
  27. Description = "Legendary Crystal.",
  28. Type = WOSTYPE.CRYSTAL,
  29. Rarity = 0,
  30. Model = "models/cyan6/cyan6.mdl",
  31. OnEquip = function( wep )
  32. wep.CustomSettings[ "Corrupted" ] = true
  33. wep.UseColor = Color( 73, 187, 206 )
  34. end,
  35. } )
  36.  
  37. wOS:RegisterItem( {
  38. Name = "LEGENDARY Crystal (White Gold Beta)",
  39. Description = "Legendary Crystal.",
  40. Type = WOSTYPE.CRYSTAL,
  41. Rarity = 0,
  42. Model = "models/whitegun/crystalgun.mdl",
  43. OnEquip = function( wep )
  44. wep.CustomSettings[ "Unstable" ] = true
  45. wep.UseColor = Color( 255, 255, 255 )
  46. wep.CustomSettings[ "InnerColor" ] = "Gold"
  47. end,
  48. }]
  49.  
  50. wOS:RegisterItem( {
  51. Name = "LEGENDARY Crystal (Twilights Dawn)",
  52. Description = "Legendary Crystal.",
  53. Type = WOSTYPE.CRYSTAL,
  54. Rarity = 0,
  55. Model = "models/purple7/purple7.mdl",
  56. OnEquip = function( wep )
  57. wep.CustomSettings[ "Unstable" ] = true
  58. wep.UseColor = Color( 36, 77, 162 )
  59. wep.CustomSettings[ "InnerColor" ] = "Black"
  60. end,
  61. }]
  62.  
  63. wOS:RegisterItem( {
  64. Name = "LEGENDARY Crystal (Twisted Gold)",
  65. Description = "Legendary Crystal.",
  66. Type = WOSTYPE.CRYSTAL,
  67. Rarity = 0,
  68. Model = "models/yellowgun/crystalgun.mdl",
  69. OnEquip = function( wep )
  70. wep.CustomSettings[ "Unstable" ] = true
  71. wep.UseColor = Color( 255, 165, 0 )
  72. wep.CustomSettings[ "InnerColor" ] = "Black"
  73. end,
  74. }]
  75.  
  76. wOS:RegisterItem( {
  77. Name = "LEGENDARY Crystal (Soiled Ember)",
  78. Description = "Legendary Crystal.",
  79. Type = WOSTYPE.CRYSTAL,
  80. Rarity = 0,
  81. Model = "models/red/red.mdl",
  82. OnEquip = function( wep )
  83. wep.CustomSettings[ "Unstable" ] = true
  84. wep.UseColor = Color( 57, 0, 19 )
  85. wep.CustomSettings[ "InnerColor" ] = "Black"
  86. end,
  87. }]
  88.  
  89. wOS:RegisterItem( {
  90. Name = "LEGENDARY Crystal (Darkened Green Soul)",
  91. Description = "Legendary Crystal.",
  92. Type = WOSTYPE.CRYSTAL,
  93. Rarity = 0,
  94. Model = "models/greengun/crystalgun.mdl",
  95. OnEquip = function( wep )
  96. wep.CustomSettings[ "Unstable" ] = true
  97. wep.UseColor = Color( 38, 220, 37 )
  98. wep.CustomSettings[ "InnerColor" ] = "Black"
  99. end,
  100. }]
  101.  
  102. wOS:RegisterItem( {
  103. Name = "LEGENDARY Crystal (Evil Royalty)",
  104. Description = "Legendary Crystal.",
  105. Type = WOSTYPE.CRYSTAL,
  106. Rarity = 0,
  107. Model = "models/purple5/purple5.mdl",
  108. OnEquip = function( wep )
  109. wep.CustomSettings[ "Unstable" ] = true
  110. wep.UseColor = Color( 89, 17, 176 )
  111. wep.CustomSettings[ "InnerColor" ] = "Black"
  112. end,
  113. }]
  114.  
  115. wOS:RegisterItem( {
  116. Name = "LEGENDARY Crystal (Darkened Blue Soul)",
  117. Description = "Legendary Crystal.",
  118. Type = WOSTYPE.CRYSTAL,
  119. Rarity = 0,
  120. Model = "models/bluegun/crystalgun.mdl",
  121. OnEquip = function( wep )
  122. wep.CustomSettings[ "Unstable" ] = true
  123. wep.UseColor = Color( 25, 25, 122 )
  124. wep.CustomSettings[ "InnerColor" ] = "Black"
  125. end,
  126. }]
  127.  
  128. wOS:RegisterItem( {
  129. Name = "LEGENDARY Crystal (Kollectors Super Blue)",
  130. Description = "Legendary Crystal.",
  131. Type = WOSTYPE.CRYSTAL,
  132. Rarity = 0,
  133. Model = "models/blue2/blue2.mdl",
  134. OnEquip = function( wep )
  135. wep.CustomSettings[ "Corrupted" ] = true
  136. wep.UseColor = Color( 25, 25, 112 )
  137. end,
  138. } )
  139.  
  140. wOS:RegisterItem( {
  141. Name = "LEGENDARY Crystal (Kollectors Super Red)",
  142. Description = "Legendary Crystal.",
  143. Type = WOSTYPE.CRYSTAL,
  144. Rarity = 0,
  145. Model = "models/red4/red4.mdl",
  146. OnEquip = function( wep )
  147. wep.CustomSettings[ "Corrupted" ] = true
  148. wep.UseColor = Color( 152, 0, 0 )
  149. end,
  150. } )
  151.  
  152. wOS:RegisterItem( {
  153. Name = "LEGENDARY Crystal (Kollectors Super Gold)",
  154. Description = "Legendary Crystal.",
  155. Type = WOSTYPE.CRYSTAL,
  156. Rarity = 0,
  157. Model = "models/yellow/yellow.mdl",
  158. OnEquip = function( wep )
  159. wep.CustomSettings[ "Corrupted" ] = true
  160. wep.UseColor = Color( 255, 165, 0 )
  161. end,
  162. } )
  163.  
  164. wOS:RegisterItem( {
  165. Name = "LEGENDARY Crystal (Kollectors Super Orange)",
  166. Description = "Legendary Crystal.",
  167. Type = WOSTYPE.CRYSTAL,
  168. Rarity = 0,
  169. Model = "models/orange7/orange7.mdl",
  170. OnEquip = function( wep )
  171. wep.CustomSettings[ "Corrupted" ] = true
  172. wep.UseColor = Color( 213, 73, 0 )
  173. end,
  174. } )
  175.  
  176. wOS:RegisterItem( {
  177. Name = "LEGENDARY Crystal (Kollectors Super Aqua)",
  178. Description = "Legendary Crystal.",
  179. Type = WOSTYPE.CRYSTAL,
  180. Rarity = 0,
  181. Model = "models/cyan8/cyan8.mdl",
  182. OnEquip = function( wep )
  183. wep.CustomSettings[ "Corrupted" ] = true
  184. wep.UseColor = Color( 27, 90, 92 )
  185. end,
  186. } )
  187.  
  188. wOS:RegisterItem( {
  189. Name = "LEGENDARY Crystal (Kollectors Super Blood)",
  190. Description = "Legendary Crystal.",
  191. Type = WOSTYPE.CRYSTAL,
  192. Rarity = 0,
  193. Model = "models/red/red.mdl",
  194. OnEquip = function( wep )
  195. wep.CustomSettings[ "Corrupted" ] = true
  196. wep.UseColor = Color( 57, 0, 19 )
  197. end,
  198. } )
  199. wOS:RegisterItem( {
  200. Name = "LEGENDARY Crystal (Kollectors Super Flower)",
  201. Description = "Legendary Crystal.",
  202. Type = WOSTYPE.CRYSTAL,
  203. Rarity = 0,
  204. Model = "models/purple2/purple2.mdl",
  205. OnEquip = function( wep )
  206. wep.CustomSettings[ "Corrupted" ] = true
  207. wep.UseColor = Color( 89, 17, 176 )
  208. end,
  209. } )
  210.  
  211. wOS:RegisterItem( {
  212. Name = "LEGENDARY Crystal (Kollectors Super Grace)",
  213. Description = "Legendary Crystal.",
  214. Type = WOSTYPE.CRYSTAL,
  215. Rarity = 0,
  216. Model = "models/lgreen3/lgreen3.mdl",
  217. OnEquip = function( wep )
  218. wep.CustomSettings[ "Corrupted" ] = true
  219. wep.UseColor = Color( 38, 220, 37 )
  220. end,
  221. } )
  222.  
  223. wOS:RegisterItem( {
  224. Name = "LEGENDARY Crystal (Kollectors Super Sun)",
  225. Description = "Legendary Crystal.",
  226. Type = WOSTYPE.CRYSTAL,
  227. Rarity = 0,
  228. Model = "models/yellow2/yellow2.mdl",
  229. OnEquip = function( wep )
  230. wep.CustomSettings[ "Corrupted" ] = true
  231. wep.UseColor = Color( 255, 255, 51 )
  232. end,
  233. } )
  234.  
  235. wOS:RegisterItem( {
  236. Name = "LEGENDARY Crystal (Ember Blade)",
  237. Description = "Legendary Crystal.",
  238. Type = WOSTYPE.CRYSTAL,
  239. Rarity = 0,
  240. Model = "models/orange3/orange3.mdl",
  241. OnEquip = function( wep )
  242. wep.CustomSettings[ "Unstable" ] = true
  243. wep.UseColor = Color( 255, 89, 0 )
  244. wep.CustomSettings[ "InnerColor" ] = "Black"
  245. end,
  246. }]
  247.  
  248. wOS:RegisterItem( {
  249. Name = "LEGENDARY Crystal (Shadow Blade)",
  250. Description = "Legendary Crystal.",
  251. Type = WOSTYPE.CRYSTAL,
  252. Rarity = 0,
  253. Model = "models/red4/red4.mdl",
  254. OnEquip = function( wep )
  255. wep.CustomSettings[ "Unstable" ] = true
  256. wep.UseColor = Color( 127, 2, 2 )
  257. wep.CustomSettings[ "InnerColor" ] = "Black"
  258. end,
  259. }]
  260.  
  261. wOS:RegisterItem( {
  262. Name = "LEGENDARY Crystal (Ocean Depth Blade)",
  263. Description = "Legendary Crystal.",
  264. Type = WOSTYPE.CRYSTAL,
  265. Rarity = 0,
  266. Model = "models/blue/blue.mdl",
  267. OnEquip = function( wep )
  268. wep.CustomSettings[ "Unstable" ] = true
  269. wep.UseColor = Color( 0, 42, 151 )
  270. wep.CustomSettings[ "InnerColor" ] = "Black"
  271. end,
  272. }]
  273.  
  274. wOS:RegisterItem( {
  275. Name = "LEGENDARY Crystal (Sun Fury)",
  276. Description = "Legendary Crystal.",
  277. Type = WOSTYPE.CRYSTAL,
  278. Rarity = 0,
  279. Model = "models/yellow2/yellow2.mdl",
  280. OnEquip = function( wep )
  281. wep.CustomSettings[ "Corrupted" ] = true
  282. wep.UseColor = Color( 253, 173, 53 )
  283. end,
  284. } )
Add Comment
Please, Sign In to add comment