- Traikill Stormshard (Legionnaire)
- Soho Moonshard (Breadvet)
- Tarveth Shardblade (Quaestor)
- Bocifus Ironhorns (Vigil Warmaster)
- Alku Grizzlysinner
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Object subclass: #AdventInputFile | |
instanceVariableNames: 'content' | |
classVariableNames: '' | |
poolDictionaries: '' | |
category: 'AdventOfCode2016' | |
! | |
!AdventInputFile methodsFor: 'parsing' stamp: 'NathanArmstrong 10/30/2017 00:01'! | |
splitBy: separator |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ability: | |
DisplayName: "Cloak & Dagger" | |
RefName: skill_cloakanddagger_2 | |
Description: "Expertly move past two opponents, switching places and bleeding them in the process!" | |
ShortDescription: "Switch places with and attack two targets in a row. Requires two targets." | |
ExtraDescription: "Damage: 150% of Weapon Power as Physical, adds Mild Bleed (45% Weapon Power per turn). Deals 20% more damage to enemies in a Smoke Cloud." | |
IconSprite: SkillIcons_28 | |
DisplayInList: 0 | |
Range: 1 | |
CooldownTurns: 7 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Desert Highlands - Cave near [&BCUKAAA=] (Wayment Seep) - High Vault |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require_relative 'api/endpoints' | |
module SDK | |
# Sheet resource endpoints | |
class Sheets | |
extend SDK::API::Endpoints | |
attr_reader :token | |
private :token |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var inlineArrowFunc = (x, y) => true; | |
var multilineArrowFunc = (x, y) => { | |
console.log(x); | |
return x + y; | |
}; | |
var objectLiteral = { content: true }; | |
gotoLabel: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns brainf | |
(:require [clojure.string :as str])) | |
(defn new-machine | |
"Creates a new untouched machine running the given instructions | |
and accepting the given input." | |
[instructions input] | |
{:data [0] ;; Data tape | |
:pos 0 ;; Data pointer index | |
:input input ;; Current input stream |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns Solution | |
(:require [clojure.string :as str]) | |
(:gen-class)) | |
(defn parse-int | |
"Parses an integer from the beginning of the given string | |
(in lieu of Java's Integer class)" | |
[s] | |
(with-in-str s (read))) |
NewerOlder