Paste #135027: HOW TO DO SPLSH POTION VER. FOR THIS SHIT

Date: 2025/07/22 08:53:41 UTC-07:00
Type: Denizen Script

View Raw Paste Download This Paste
Copy Link


Zelye_mami_wezenda:
    type: item
    material: potion
    mechanisms:
       hides: ITEM_DATA
    display name: <&6>Зелье Возбуждения😨
    lore:
    - <&7>Возбуждает тебя и увеличивает твой размер до
    - <&7>размеров мешочка в трусах кристал мата
    - <&7>Для снятия эффекта нужно противоядие
    recipes:
     1:
       type: brewing
       input: glass_bottle
       ingredient: netherite_scrap

antidot:
    type: item
    material: potion
    display name: <&6>Противоядие🤑
    lore:
    - <&7>Крч снимает эффект зелья возбуждения
    recipes:
     1:
       type: brewing
       input: glass_bottle
       ingredient: diamond


Zelye_mami_wezenda_use:
    type: world
    events:
        on player consumes Zelye_mami_wezenda:
        - ratelimit <player> 1s
        - take iteminhand
        - if <player.flag[scale]> >= 4:
            - narrate "<&color[#ff0000]>Лэээээ братишка нельзя перевозбуждаться"
            - stop
        - define scale <player.flag[scale]||1>
        - define newscale <[scale].add[4]>
        - adjust <player> attribute_base_values:<map[GENERIC_SCALE=<[newscale]>]>
        - flag <player> scale:<[newscale]>
        - playeffect effect:TOTEM_OF_UNDYING at:<player.location> quantity:50
        - playsound <player.location> sound:ITEM_TOTEM_USE


        on player consumes antidot:
        - ratelimit <player> 1s
        - if <player.flag[scale]> <= 2,1:
            - narrate "<&color[#ff0000]>Братюнь ты и так в здравии"
            - stop
        - take iteminhand
        - define scale <player.flag[scale]||1>
        - define newscale <[scale].sub[4]>
        - adjust <player> attribute_base_values:<map[GENERIC_SCALE=<[newscale]>]>
        - flag <player> scale:<[newscale]>
        - playeffect effect:TOTEM_OF_UNDYING at:<player.location> quantity:50
        - playsound <player.location> sound:ITEM_TOTEM_USE