The Verity encounter in the Salvation's Edge Raid is a complex logic puzzle. Players are split between "Inside Rooms" (Solo) and the "Main Room" (Dissection). For those inside the solo rooms, the goal is to manipulate the two shapes on their wall until they hold the two shapes that their own statue is NOT holding.
For example, if your statue is holding a Circle, your final goal is to have a Square and a Triangle on your wall. When these two combine, they form a Prism, allowing you to exit through the glass.
Inside Room Logic Steps
To successfully "clean" your room and prepare for exit, you generally follow two phases:
Phase 1 (The Purge): If you have shapes that match your own statue, you must give them away to the players who represent those shapes. If you have two of your own shape, give one to each of the other two players.
Phase 2 (The Combination): Once you have no shapes matching your statue, you trade one of your "incorrect" shapes with the other player who also has an "incorrect" shape to complete your set.
Cylinder: Square + Circle
(Required for Triangle Statue)
Cone: Circle + Triangle
(Required for Square Statue)
Prism: Square + Triangle
(Required for Circle Statue)
Sphere/Cube/Pyramid: Double shapes.
Used to trigger specific mechanic transitions.
Exit Combinations Reference
Use the following table to verify your 3D shape before attempting to walk through the glass wall:
Circle Player: Needs Square & Triangle. Final Shape: Prism.
Square Player: Needs Circle & Triangle. Final Shape: Cone.
Triangle Player: Needs Circle & Square. Final Shape: Cylinder.
function calculateVerity() {
var statue = document.getElementById('myStatue').value;
var w1 = document.getElementById('wallLeft').value;
var w2 = document.getElementById('wallRight').value;
var resultBox = document.getElementById('resultBox');
var stepsList = document.getElementById('stepsList');
var finalShapeTitle = document.getElementById('finalShapeTitle');
resultBox.style.display = 'block';
stepsList.innerHTML = ";
var targetShapes = [];
var target3D = "";
// Determine target state based on statue
if (statue === 'circle') {
targetShapes = ['square', 'triangle'];
target3D = "Prism (Square + Triangle)";
} else if (statue === 'square') {
targetShapes = ['circle', 'triangle'];
target3D = "Cone (Circle + Triangle)";
} else if (statue === 'triangle') {
targetShapes = ['circle', 'square'];
target3D = "Cylinder (Circle + Square)";
}
finalShapeTitle.innerText = "Goal: " + target3D;
// Logic for Instructions
var steps = [];
// Phase 1: Check for doubles or matching statue
if (w1 === statue && w2 === statue) {
steps.push("You have a Double " + statue.toUpperCase() + ". Give one to each of the other two players.");
} else if (w1 === statue || w2 === statue) {
var otherShape = (w1 === statue) ? w2 : w1;
steps.push("Give your " + statue.toUpperCase() + " to the player representing that shape.");
steps.push("Wait to receive a shape from your teammates.");
} else if (w1 === w2) {
steps.push("You have a double " + w1.toUpperCase() + ". Give one to the player who needs it (the " + (w1 === 'circle' ? 'Triangle/Square' : w1 === 'square' ? 'Circle/Triangle' : 'Circle/Square') + ").");
}
// Phase 2: Completion
var currentShapes = [w1, w2];
var isCorrect = true;
for (var i = 0; i < targetShapes.length; i++) {
if (currentShapes.indexOf(targetShapes[i]) === -1) {
isCorrect = false;
}
}
if (isCorrect) {
steps.push("READY TO EXIT: Your wall matches the required combination for your statue.");
} else {
steps.push("After clearing your statue's shape, swap your remaining 'incorrect' shape with the third player to get your " + targetShapes[0] + " and " + targetShapes[1] + ".");
}
// Handle the "Shadow" logic
steps.push("Note: If you see shadows of players on the wall, wait until your teammates have distributed shapes correctly before picking up your 3D combination.");
for (var j = 0; j < steps.length; j++) {
var div = document.createElement('div');
div.className = 'instruction-step';
div.innerHTML = steps[j];
stepsList.appendChild(div);
}
}