Advertisement
Ultroman

Silisiban

May 7th, 2019
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.32 KB | None | 0 0
  1. local function buildgem(colour, precious)
  2.     -- a lot of other code
  3.     return Prefab(colour..(precious and "preciousgem" or "gem"), fn, assets)
  4. end
  5.  
  6. return buildgem("purple"),
  7.     buildgem("blue"),
  8.     buildgem("red"),
  9.     buildgem("orange"),
  10.     buildgem("yellow"),
  11.     buildgem("green"),
  12.     buildgem("opal", true)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement