Skip to content

Instantly share code, notes, and snippets.

View ganius's full-sized avatar

Gani Simsek ganius

  • Dublin, Ireland
View GitHub Profile
@ganius
ganius / xenophage.py
Created October 30, 2019 02:54
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',