mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-07 21:24:59 +00:00
scribbles
This commit is contained in:
@@ -85,6 +85,10 @@ HAT_FLOWER = "mikufairy"
|
||||
HAT_SKITTY_TV = "skittyTV"
|
||||
HAT_TVHEAD = "tvhead"
|
||||
|
||||
HAT_SCRIBBLES1 = "scribbles1"
|
||||
HAT_SCRIBBLES2 = "scribbles2"
|
||||
HAT_SCRIBBLES3 = "scribbles3"
|
||||
HAT_SCRIBBLES4 = "scribbles4"
|
||||
|
||||
HAT_CARDBOARD_BOX = "box"
|
||||
HAT_CAPTAIN = "seacaptain"
|
||||
|
||||
@@ -1777,4 +1777,24 @@ def purchaseDyeKitMenu(hats_kit_price=0,clothes_kit_price=0)
|
||||
end
|
||||
pbCallBub(2,@event_id)
|
||||
pbMessage("You can use \\C[1]Dye Kits\\C[0] at any time when you change clothes.")
|
||||
end
|
||||
|
||||
def giveJigglypuffScribbles(possible_versions = [1,2,3,4])
|
||||
selected_scribbles_version = possible_versions.sample
|
||||
case selected_scribbles_version
|
||||
when 1
|
||||
scribbles_id= HAT_SCRIBBLES1
|
||||
when 2
|
||||
scribbles_id= HAT_SCRIBBLES2
|
||||
when 3
|
||||
scribbles_id= HAT_SCRIBBLES3
|
||||
when 4
|
||||
scribbles_id= HAT_SCRIBBLES4
|
||||
end
|
||||
return if !scribbles_id
|
||||
|
||||
if !hasHat?(scribbles_id)
|
||||
$Trainer.unlocked_hats << scribbles_id
|
||||
end
|
||||
putOnHat(scribbles_id,true,true)
|
||||
end
|
||||
Reference in New Issue
Block a user