Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions proto/common.proto
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,7 @@ enum ZanzaBuff {
CerebralCortexCompound = 6;
GizzardGum = 7;
LungJuiceCocktail = 8;
DarnassusGiftCollection = 9;
}

message MiscConsumes {
Expand Down
4 changes: 4 additions & 0 deletions sim/core/consumes.go
Original file line number Diff line number Diff line change
Expand Up @@ -615,6 +615,10 @@ func applyZanzaBuffConsumes(character *Character, consumes *proto.Consumes) {
character.AddStats(stats.Stats{
stats.Stamina: 25,
})
case proto.ZanzaBuff_DarnassusGiftCollection:
character.AddStats(stats.Stats{
stats.Agility: 30,
})
}
}

Expand Down
5 changes: 5 additions & 0 deletions ui/core/components/inputs/consumables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,10 @@ export const GizzardGum: ConsumableInputConfig<ZanzaBuff> = {
actionId: () => ActionId.fromItemId(8424),
value: ZanzaBuff.GizzardGum,
};
export const DarnassusGiftCollection: ConsumableInputConfig<ZanzaBuff> = {
actionId: () => ActionId.fromItemId(22133),
value: ZanzaBuff.DarnassusGiftCollection,
};

// Zanza Potions
export const SpiritOfZanza: ConsumableInputConfig<ZanzaBuff> = {
Expand All @@ -517,6 +521,7 @@ export const ZANZA_BUFF_CONSUMES_CONFIG: ConsumableStatOption<ZanzaBuff>[] = [
{ config: LungJuiceCocktail, stats: [Stat.StatStamina] },
{ config: CerebralCortexCompound, stats: [Stat.StatIntellect] },
{ config: GizzardGum, stats: [Stat.StatSpirit] },
{ config: DarnassusGiftCollection, stats: [Stat.StatAgility] },
];
export const makeZanzaBuffConsumesInput = makeConsumeInputFactory({ consumesFieldName: 'zanzaBuff' });

Expand Down
Loading