Skip to content

Instantly share code, notes, and snippets.

@seriallos
seriallos / relicTraits.json
Created September 18, 2017 20:52
List of Traits that can appear on relics
{
"1": [],
"2": [
{
"id": "53",
"spell": {
"id": "186945",
"name": "Wrath of the Ashbringer",
"icon": "ability_paladin_sanctifiedwrath"
}
{
"1": [],
"2": [
{
"id": "53",
"spell": {
"id": "186945",
"name": "Wrath of the Ashbringer"
}
},
@seriallos
seriallos / core.lua
Created May 1, 2017 07:33
Add gear from bags to /simc output
local _, Simulationcraft = ...
Simulationcraft = LibStub("AceAddon-3.0"):NewAddon(Simulationcraft, "Simulationcraft", "AceConsole-3.0", "AceEvent-3.0")
local OFFSET_ITEM_ID = 1
local OFFSET_ENCHANT_ID = 2
local OFFSET_GEM_ID_1 = 3
local OFFSET_GEM_ID_2 = 4
local OFFSET_GEM_ID_3 = 5
local OFFSET_GEM_ID_4 = 6
{
init: function(elevators, floors) {
numElevators = elevators.length;
topFloor = floors.length - 1;
bottomFloor = 0;
rotator = 0;
@seriallos
seriallos / eve-prices.coffee
Created January 22, 2015 23:18
Hubot script for EVE item prices (CREST and Eve-Central)
# Description:
# Interacts with the Eve Central API
#
# Commands:
# hubot price( ?check)? <item> - Returns average price for item.
#
# Dependencies
# lodash
# request
# numeral
[Ishtar, PVE - Low Sec Explo]
Medium Armor Repairer II
Medium Armor Repairer II
Armor Thermic Hardener II
Armor EM Hardener II
Drone Damage Amplifier II
Cap Recharger II
Cap Recharger II
@seriallos
seriallos / 1 - The Numbers
Last active September 26, 2018 01:58
PVE Fits - Ishtar vs Prot
Bella's skills
Ship | BR Tank | Gun DPS | Drone DPS | Total DPS | Cap | Cost (pyfa)
-------------------------------|---------|---------|-----------|-----------|-------|-------------
Ishtar - Ogres | 506 | 125 | 536 | 661 | 30.3% | 216M
Ishtar - Wardens | 506 | 125 | 333 | 458 | 30.3% | 216M
Drone Proteus - 2 MAR - GECKO | 758 | 156 | 508 | 665 | 26.5% | 381M
Drone Proteus - 2 MAR - Ogres | 758 | 156 | 514 | 670 | 26.5% | 330M
Drone Proteus - 2 MAR - Warden | 758 | 156 | 319 | 476 | 26.5% | 381M
Drone Proteus - 1 MAR - Ogre | 464 | 156 | 582 | 738 | 41.2% | 329M
@seriallos
seriallos / Ishtar
Last active August 29, 2015 14:07
Low Sec Explo
[Ishtar, PVE - Sites and Explo]
Medium Armor Repairer II
Armor EM Hardener II
Armor EM Hardener II
Armor Thermic Hardener II
Armor Thermic Hardener II
Cap Recharger II
Cap Recharger II
Cap Recharger II
@seriallos
seriallos / quadruped.monstertype
Created January 3, 2014 03:12
Starbound UUID Logging
{
"__merge": [],
"baseParameters": {
"scripts": [ "/scripts/uuidlog.lua" ]
}
}
@seriallos
seriallos / 1: login.coffee
Last active December 16, 2015 14:38
Playing around with ZombieJS and Mocha
Browser = require 'zombie'
assert = require 'assert'
getBrowser = () ->
browser = new Browser()
browser.site = "https://www.infinitecrisis.com"
return browser
describe "login", () ->
before () ->