mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-06 06:01:46 +00:00
scribbles
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -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
|
||||
Binary file not shown.
@@ -318,6 +318,11 @@
|
||||
"tags": "nest,",
|
||||
"howToGet": "stay idle in celadon"
|
||||
},
|
||||
{
|
||||
"id": "eeveeears",
|
||||
"name": "Eevee Ears",
|
||||
"tags": "hairband,pokemon-eevee,"
|
||||
},
|
||||
{
|
||||
"id": "electrivireheadset",
|
||||
"name": "Electivire Headset",
|
||||
@@ -1107,6 +1112,30 @@
|
||||
"price": 25000,
|
||||
"tags": "hat,pokemon-delibird,"
|
||||
},
|
||||
{
|
||||
"id": "scribbles1",
|
||||
"name": "Mask Scribbles",
|
||||
"description": "Markings in the shape of a mask drawn on your face by a mischievous Jigglypuff!",
|
||||
"tags": "special,mask,"
|
||||
},
|
||||
{
|
||||
"id": "scribbles2",
|
||||
"name": "Moustache Scribbles",
|
||||
"description": "Markings in the shape of a moustache drawn on your face by a mischievous Jigglypuff!",
|
||||
"tags": "special,mask,"
|
||||
},
|
||||
{
|
||||
"id": "scribbles3",
|
||||
"name": "Circle Scribbles",
|
||||
"description": "Markings in the shape of a circle drawn on your face by a mischievous Jigglypuff!",
|
||||
"tags": "special,mask,"
|
||||
},
|
||||
{
|
||||
"id": "scribbles4",
|
||||
"name": "Swirly Scribbles",
|
||||
"description": "Markings in the shape of a swirl drawn on your face by a mischievous Jigglypuff!",
|
||||
"tags": "special,mask,"
|
||||
},
|
||||
{
|
||||
"id": "seacaptain",
|
||||
"name": "Captain's Hat",
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 446 KiB After Width: | Height: | Size: 446 KiB |
Reference in New Issue
Block a user