Skip to content

Instantly share code, notes, and snippets.

@Kaeydo
Kaeydo / xenophage.py
Created September 27, 2021 23:32 — forked from ganius/xenophage.py
Simple Python script I wrote for the Destiny 2 Shadowkeep Xenophage exotic weapon quest
"""
A brute force solution to Xenophage quest
"""
import random
# Symbols are coded as the most similar letters, namely X, E, V, A
# Shooting a symbol converts it from one shape (letter) to another
trans_dict = {
'X': 'E',
'E': 'V',