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
Regular gear: | |
Chance of getting 3 of the same ability: 1089/35937 = 1/33 ~ 3.0303% | |
Chance of getting 3 of the favoured ability: 1000/35937 = 1/35.937 ~ 2.7826% | |
Chance of getting 3 of the same neutral ability: 88/35937 = 8/3267 = 1/408.375 ~ 0.2449% | |
Chance of getting 3 of a specific neutral ability: 8/35937 = 1/4492.125 ~ 0.0223% | |
Chance of getting 3 of the unfavoured ability: 1/35937 = 1/35937 ~ 0.0028% | |
Chance of getting at least 2 of the same ability: 12177/35937 = 41/121 ~ 1/2.95 ~ 33.8843% | |
Chance of getting at least 2 of the favoured ability: 7900/35937 ~ 1/4.55 ~ 21.9829% |
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
// +w2048 +h2048 +ua +a0.01 +am2 +r4 +fn | |
#version 3.7 | |
global_settings | |
{ | |
assumed_gamma 1 | |
} | |
background |
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
using System; | |
using System.IO; | |
using LibGit2Sharp; | |
namespace PushTestcase | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ |
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
@media only screen and (min--moz-device-pixel-ratio: 1.5), /* Gecko */ | |
only screen and (-o-min-device-pixel-ratio: 3/2), /* Opera */ | |
only screen and (-webkit-min-device-pixel-ratio: 1.5), /* Webkit */ | |
only screen and (min-device-pixel-ratio: 1.5), /* Webkit */ | |
only screen and (min-resolution: 144dpi) /* W3 */ | |
{ | |
.button-icon { | |
background-image: url("path/to/image/[email protected]"); | |
background-size: 16px 16px; | |
} |