Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
;; Copyright (C) 2017 by Anmint | |
;; Author: Anmint <anmint at outlook.com> | |
;; URL: | |
;; Version: 0.01 | |
;; This program is free software; you can redistribute it and/or modify | |
;; it under the terms of the GNU General Public License as published by | |
;; the Free Software Foundation, either version 3 of the License, or | |
;; (at your option) any later version. |
This file contains 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
# -*- coding: utf-8 -*- | |
import numpy as np | |
from numpy.random import * | |
import matplotlib.pyplot as plt | |
from matplotlib.font_manager import FontProperties | |
def main(): | |
LOOP_TIME = 10000 | |
# Roll three dices for bonus and penalty rule in CoC 7th | |
Rhigh1 = randint(0,10,LOOP_TIME) |