Date: 2025/07/22 08:53:41 UTC-07:00
Type: Denizen Script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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