Lara Croft - Event Shop Guide
- Charlie-HWC

- Aug 25
- 1 min read

Looking for Free Event Rewards! Click the Links Below
đ Here's a bonus - follow the link to get Tomb Raider Boxes!âĄď¸ The link works till the end of the event on September 1, 2 AM UTC
What are the Best Buys from Lara's Event Shop?
The items with the XÂ and XXÂ are the "most efficient" buys! (click to enlarge)

Special Note about the Event Schedule:
The event is active until
What's in Lara Crofts Box?!

More Lara Boxes Dolls
NO LARA Soul Stones
Gold
Hero Exp Potions
Blue Runes
Violet Runes
Red Artifact Essences
Red Artifact Scrolls
Red Artifact Metals
Strength Skin Stones
Agility Skin Stones
Intelligence Skin Stones
Outland Coins
Artifact Coins
Chaos Particles





The best strategy for Lara Croft dolls (that I could think of) is
1) Always refresh when you get a Lara Croft doll.
2) if you've already picked all golden vases, refresh on any Grand Prize.
This strategy with 5 golden vases yields 300 Lara Croft dolls for 847.4 picks on average.
Here's the Matlab code:
attempts = 0;
dolls_found = 0;
for simulations = 1:10000000
locations = 1:32;
lara_location = randi([1 32]); % This is Lara Croft location
prize1_location = randi([1 31]);
prize2_location = randi([1 30]);
locations = [locations(1:(lara_location-1)) locations((lara_location+1):end)];
% prize1 location is picked from the list. You can't pick Lara's location as it is already removed.
prize1_location = locations(prize1_location);
% Removing prize 1 from the available locations.