scribbles

This commit is contained in:
chardub
2025-03-20 17:16:52 -04:00
parent de1580c54c
commit 4e26dbfeca
7 changed files with 53 additions and 0 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -85,6 +85,10 @@ HAT_FLOWER = "mikufairy"
HAT_SKITTY_TV = "skittyTV" HAT_SKITTY_TV = "skittyTV"
HAT_TVHEAD = "tvhead" HAT_TVHEAD = "tvhead"
HAT_SCRIBBLES1 = "scribbles1"
HAT_SCRIBBLES2 = "scribbles2"
HAT_SCRIBBLES3 = "scribbles3"
HAT_SCRIBBLES4 = "scribbles4"
HAT_CARDBOARD_BOX = "box" HAT_CARDBOARD_BOX = "box"
HAT_CAPTAIN = "seacaptain" HAT_CAPTAIN = "seacaptain"

View File

@@ -1777,4 +1777,24 @@ def purchaseDyeKitMenu(hats_kit_price=0,clothes_kit_price=0)
end end
pbCallBub(2,@event_id) pbCallBub(2,@event_id)
pbMessage("You can use \\C[1]Dye Kits\\C[0] at any time when you change clothes.") 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 end

Binary file not shown.

View File

@@ -318,6 +318,11 @@
"tags": "nest,", "tags": "nest,",
"howToGet": "stay idle in celadon" "howToGet": "stay idle in celadon"
}, },
{
"id": "eeveeears",
"name": "Eevee Ears",
"tags": "hairband,pokemon-eevee,"
},
{ {
"id": "electrivireheadset", "id": "electrivireheadset",
"name": "Electivire Headset", "name": "Electivire Headset",
@@ -1107,6 +1112,30 @@
"price": 25000, "price": 25000,
"tags": "hat,pokemon-delibird," "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", "id": "seacaptain",
"name": "Captain's Hat", "name": "Captain's Hat",

Binary file not shown.

Before

Width:  |  Height:  |  Size: 446 KiB

After

Width:  |  Height:  |  Size: 446 KiB