Il Guerriero in 5e è un combattente forte e autosufficiente, dotato di capacità uniche. E' sicuramente il combattente più forte in assoluto, se si parla strettamente di efficacia in battaglia.
Hit Dice: d10.
Armor Proficiencies: tutte.
Weapon Proficiencies: tutte.
Tools: niente. Gli strumenti del guerriero sono i suoi muscoli.
Saving Throws: ovviemente Forza e Costituzione.
Skill: due a scelta a una piccola lista. Nella norma.
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
en: | |
NAME: 'NAME' | |
CLAN: 'CLAN' | |
EXP: 'EXP' | |
SCHOOL: 'SCHOOL' | |
RANK: 'RANK' | |
INSIGHT: 'INSIGHT' | |
STAMINA: 'STAMINA' | |
REFLEXES: 'REFLEXES' | |
HONOR: 'HONOR' |
In another topic someone was wondering about the new advantage/disadvantage mechanic, and under which situations it comes into effect. Because basic rules don't include a dedicated list (understandable, as it's usually a side effect of a very wide variety of actions or situations) I wrote a summary with the information from the different instances where advantage or disadvantage are mentioned in the basic rules, just in case anyone else is curious. I separated it by context:
RACES
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
#define CATCH_CONFIG_MAIN | |
#include "catch.hpp" | |
#include <memory> | |
#include <utility> | |
#include <exception> | |
namespace mem { | |
class null_dereference_exception : public std::exception { }; | |
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
#include <iostream> | |
#include <vector> | |
#include <array> | |
#include <unordered_set> | |
#include <algorithm> | |
#include <functional> | |
using std::cout; | |
using std::unordered_set; |
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
# This is an example resource file for rTorrent. Copy to | |
# ~/.rtorrent.rc and enable/modify the options as needed. Remember to | |
# uncomment the options you wish to enable. | |
# Maximum and minimum number of peers to connect to per torrent. | |
min_peers = 1 | |
max_peers = 100 | |
# Same as above but for seeding completed torrents (-1 = same as downloading) |
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
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
"""Solarized theme for pantheon-terminal | |
see http://ethanschoonover.com/solarized | |
""" | |
import posixpath | |
import sys | |
from gi.repository import Gio |