Any tools to input a number and output dice notation?

I'm looking for a tool where I can input a number (or ideally a maximum to minimum range) and it will output the average and the dice notation.

I'm certain this either exists already or definitely should exist. Lol.

I know how to create the notation longhand, but I'm working on a homebrew project with lots of creatures (hundreds, actually) and this would speed things up. Plus, I was hoping it would provide either the most efficient notation or multiple notations from which I could choose.

Let me know if anyone has seen a website or an app or a computer program or an excel spreadsheet that does something like this.

Thanks.

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/writethinker
πŸ“…︎ Oct 01 2021
🚨︎ report
D6 System and dice "standard" notation

Hi!

I'm working on a tool for game masters to help with improvisation. Among other things, it will feature a very customizable dice roller and it's system agnostic (ie. compatible with almost anything).

As I was implementing the D6 system approach (with the Wild die), I ran into some problem while using the "dice notation" system:

  • if the wild die rolls a 6, it explodes and stacks values. Fine, looks like something like "d6! + 3d6"
  • if the wild die rolls a 1, it is discarded, along with the highest value in the remaining pool. And that's where I'm stuck: is there any way to describe that in the somewhat standard dice notation format?
πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/deepnightbdx
πŸ“…︎ Mar 23 2021
🚨︎ report
Problem adding dice notations

I am pretty new to Encounter+. When I create a new character I am unable to add dice notations. I will type in a dice notation, but when I press enter the dice notation will disappear. What am I doing wrong?

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/guygilber
πŸ“…︎ Jul 31 2020
🚨︎ report
Dice Notation for the Monsterpocalypse monpoc.net/34-general/246…
πŸ‘︎ 5
πŸ’¬︎
πŸ‘€︎ u/Gearb0x
πŸ“…︎ Feb 09 2020
🚨︎ report
[OC] Compute Probabilities of Success using Dice Notation

I wanted to make an easy way to compute various probabilities of dice rolls, so I made a little project: https://dice.macronid.com/

Unlike every dice roller that I could find, it doesn't just randomly roll dice. It enumerates all possible combinations of dice and then uses that to evaluate logical expressions, returning an exact probability.

Basic outline of functionality:

  • Server built on flask
  • Parser based on Arpeggio
  • Lots of custom glue code

Update Sept. 20

  • Made calculations significantly faster. Some complex expressions that previously timed out now complete in a reasonable time
  • Added function invocation. There's only one right now binom, and it's not documented, but hey, I'm only one guy.
πŸ‘︎ 9
πŸ’¬︎
πŸ‘€︎ u/GameCounter
πŸ“…︎ Sep 19 2018
🚨︎ report
How do I go about parsing dice notation?

I'm pretty new to Common Lisp and one of the first projects I want to try my hand at is a table top rpg dice roller that uses random.org for more fair rolls. The part of this project that's stumping me as a new lisper is parsing dice notation. How should I go about doing this?

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/gigavinyl
πŸ“…︎ Jul 31 2018
🚨︎ report
Who first said d20? Origins of dice notation. playingattheworld.blogspo…
πŸ‘︎ 109
πŸ’¬︎
πŸ‘€︎ u/increm
πŸ“…︎ Aug 11 2013
🚨︎ report
PyRolldice - A dice notation parser github.com/ThePlasmaRailg…
πŸ‘︎ 11
πŸ’¬︎
πŸ‘€︎ u/Finianb1
πŸ“…︎ Jul 21 2018
🚨︎ report
Do we still need to explain dice notation (1d6, 2d6, ...) in rulebooks? Do you?

Saw this article on the origins of dice notation and it got me thinking about if we still need to explain dice-notation to our players in every rulebook? Or is it assumed that anyone interested in playing one of our games will already know by now or can easily figure out or ask someone?

Must admit I put boilerplate like explaining dice in all my (prototype) rulebooks, but maybe that is just a waste of time and ink (and risks confusing things by explaining it in a bad way and make gamers uncertain if I use an unusual notation)?

πŸ‘︎ 21
πŸ’¬︎
πŸ‘€︎ u/livrem
πŸ“…︎ Aug 23 2013
🚨︎ report
d20 | Dart library for RPG dice rolling. Supports standard dice notation. pub.dartlang.org/packages…
πŸ‘︎ 9
πŸ’¬︎
πŸ‘€︎ u/Purple_Pizzazz
πŸ“…︎ Sep 14 2018
🚨︎ report
[Software] Dice notation parser for Java

This may be more technical than other tools, as it is meant for programmers, but I have a dice notation parser which can be used in Java applications (JDK8 and upwards).

https://github.com/Bernardo-MG/dice-notation-java

Behind the scenes it is using am ANTLR BNF grammar, which was included among the example grammars:

https://github.com/antlr/grammars-v4/tree/master/dice

I haven't touched the project in months, but if anybody wants an extension, or wants to help, I would be happy to hear about it.

πŸ‘︎ 11
πŸ’¬︎
πŸ‘€︎ u/Bernardo-MG
πŸ“…︎ Jul 24 2018
🚨︎ report
My free, ad-less Android dice app now supports dropping highest or lowest dice and (some) roll20 notation. play.google.com/store/app…
πŸ‘︎ 8
πŸ’¬︎
πŸ‘€︎ u/Bratmon
πŸ“…︎ Jun 20 2018
🚨︎ report
How widely understood is dice notation?

Do terms such as 3d6 / 1d8 need to be explained to modern gaming audiences, or is dice notation so widely used as to be self explanatory?

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/zhu_bajie
πŸ“…︎ Nov 12 2014
🚨︎ report
[PYTHON] Dice notation range caculator in 189 bytes
import sys,re
def a(b):
 m=re.search(b,n)
 try:return int(m.group(0))
 except:return 0
n=sys.argv[1]
r=a('[0-9]+(?=d)')
e=a(r'[\+\-][0-9]+$')
print(str(r+e)+'-'+str(r*a('(?<=d)[0-9]+')+e))
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/pythondude325
πŸ“…︎ Dec 20 2015
🚨︎ report
Confusion with some dice notation

While reading through the Call of Cthulhu 5.6 rule I came across a point where it said that the player losses 1d6/1d20 sanity points and another where it says they lose 1/1d6. I would have thought it just meant 1d6+1d20 but it seems like such an odd way to write it.

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/secretly-a-pirate
πŸ“…︎ Sep 24 2016
🚨︎ report
A question involving a dice class and the big o notation?(JAVA)

This was a question I got for a computer science lab and I'm just wondering if someone could give me an idication of what to do or a sample code..

It looks like I'm meant to use nested loops for loops but I'm just not sure what way to nest them, when to break the loops etc.

You should re-use your Dice class from the previous week. (its basically just a class that stores a dice object)

The user inputs a number n which determines the number of groups of 6 dice to be rolled.

The program should output x, which is the number of times 6n dice are rolled before they show an equal number of all values. For example, if n is 1, then x will be the number of times you need to roll 6 dice before you get a 1, 2, 3, 4, 5 and 6. On average, this value is around 64.8.

Don’t calculate this mathematically, do it via a Monte Carlo simulation(running it several times). The output number x will be variable because it is subject to chance. Do multiple experiments to find a stable average value for x.

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/john_m1
πŸ“…︎ Nov 03 2014
🚨︎ report
TIL someone implemented the Dungeons & Dragons dice-rolling notation into a computer language, complete with 19-page academic paper and conference presentation docs.google.com/viewer?ur…
πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/kecr
πŸ“…︎ Dec 17 2011
🚨︎ report
Notational Battle Report (Nova-ESR & Sky Sentinel vs. Rogzor and Tharsis-5) with a 10 action dice start

Hello! Thank you for reading my battle report. This one is going to be a little different, since there are no pictures. Instead, I’ll be using the Dice Notation system I outlined here: https://monpoc.net/34-general/246-dice-notation-for-the-monsterpocalypse

SETUP

Doctormungmung vs. Gearbox (D vs G)

D: Rogzor & Tharsis-5 (RZ & T5)

G: Sky Sentinel & Nova-ESR (SS & NE)

G wins opening roll, D chooses Calamity Park

10 A Dice start (TTS Game)

Calamity Park is my second favorite map, and definitely one I’m familiar with going second on. My opponent is extremely skilled with Tharsis-5, so I’m aiming to take that monster out first, if I can. Rogzor only gets more powerful in Hyper form, so I’ll try to leave it alone for as long as possible. This is a friendly game, with no stakes, so I’m bringing a double flight list for fun and my opponent is trying out Rogzor.

G U10: 10u (2 Steelshells use SSI, 5/6 Power Zones + SSI controlled )

D U10: 6u, 4a, +1p

Note these unit openings. With a Shadow Sun Industries Building’s Underground Network I’m able to drop two speed 4 units on my opponent’s side of the board; occupying 5 of the 6 power zones, a negative zone, and maintaining control of the SSI. This forces my opponent to devote almost half of their action dice into removing my defense 4 models from the board, and they succeed in only one attack. They also manage to secure one single power zone with a power pod.

G M10: 0+5p, -1n, Sprint, 1s

  • NE blast units 1/2/3, +1p, 1s

Here’s where things get nasty. Using Nova’s Sprint and stepping, it’s possible to get within 3 squares of the power pod, destroy it, and step back into a screened position. Sky Sentinel, generally my opponent’s primary target, is in the back, too far away to be punished because...

D M10: 0+0p, 2s

  • RZ blast Tokyo Triumph 3/5/0 +3p, 2s
  • T5 Throw NE 3/4/3 Miss!

My opponent powers up for zero. Let me make that clear. My opponent has zero dice in their power pool, because I used the SSI to force them into a bad situation. With zero dice, the only hope to land an alpha strike is to chuck everything into a 3 damage throw. Using Rogzor to clear the building screening Nova (and getting a unit in the bargain) before Tharsis steps up and whiffs. This whiff is specifically due to the limited power dice available to the second player thanks to th

... keep reading on reddit ➑

πŸ‘︎ 8
πŸ’¬︎
πŸ‘€︎ u/Gearb0x
πŸ“…︎ Mar 21 2020
🚨︎ report
A Leveraged, All-Weather-type portfolio with significantly reduced volatility and increased returns

Happy New Year, fellow LETFists!

For a while now, I've been talking about writing a post that summarizes my investment strategy. Apologies for the delay, but at least, here we go! Please note that I am NOT A FINANCIAL PROFESSIONAL. This post is meant for education and entertainment purposes only, and should not be considered financial advice.

In brief, my approachβ€”which I'm egotistically terming RNAProf's Excellent Adventure (RPEA)β€”expands on the leveraged, Dalio-style All-Weather portfolio (with modifications expertly suggested here by u/rao-blackwell-ized/ ) to include some equity asset classes not covered in that original design. RPEA combines this portfolio with a variant of Meb Faber's market timing strategy, based on Simple Moving Averages (SMAs), with each SMA tailored to the particular asset. This seems like a complicated approach, but in reality it's a relatively simple portfolio (maximum of nine holdings), and requires only ~1 hour of work each month to maintain.

This post will go through the portfolio design and backtesting strategy, but for those of you who might find it tl;dr, here's a 27-year backtest, from April '94 to September '21, compared to HFEA, VFINX, and a 60:40 Portfolio (HFEA and 60:40 rebalancing quarterly):

FIGURE 1. Returns on a $10k input, from 1994–2021. HFEA and 60:40 portfolios were rebalanced quarterly.

Over the course of this ~27 year backtest, these four portfolios exhibited the following statistics:

FIGURE 2. Simulation Summary Statistics. S.d. = standard deviation. Volatility is the CV: (S.d.)/Average.

Apologies for not having computed Sharpe, Sortino, max drawdowns, etc.. I do my modeling in Excel, and the drawdown calculation in particular is... challenging. But, I'll provide some more statistics below.

Project goals:

There were two driving goals underlying the design of this portfolio. (1) First, I wanted to use leveraged ETFs to achieve HFEA-like returns over the longterm, but to avoid the years- to-decades long volatility the original HFEA strategy entails. As you can see from (FIGURE 1), the "lost decade" from 1999–2009 treated HFEA about as well as it treated

... keep reading on reddit ➑

πŸ‘︎ 148
πŸ’¬︎
πŸ‘€︎ u/RNAProf
πŸ“…︎ Jan 02 2022
🚨︎ report
SERIOUS: This subreddit needs to understand what a "dad joke" really means.

I don't want to step on anybody's toes here, but the amount of non-dad jokes here in this subreddit really annoys me. First of all, dad jokes CAN be NSFW, it clearly says so in the sub rules. Secondly, it doesn't automatically make it a dad joke if it's from a conversation between you and your child. Most importantly, the jokes that your CHILDREN tell YOU are not dad jokes. The point of a dad joke is that it's so cheesy only a dad who's trying to be funny would make such a joke. That's it. They are stupid plays on words, lame puns and so on. There has to be a clever pun or wordplay for it to be considered a dad joke.

Again, to all the fellow dads, I apologise if I'm sounding too harsh. But I just needed to get it off my chest.

πŸ‘︎ 17k
πŸ’¬︎
πŸ‘€︎ u/anywhereiroa
πŸ“…︎ Jan 15 2022
🚨︎ report
DREAD HALL OF THE RUNE LORD: A one page 10 minute micro dungeon crawl, for one player nakade.itch.io/dread-hall…
πŸ‘︎ 9
πŸ’¬︎
πŸ‘€︎ u/UtilityHotbar
πŸ“…︎ Nov 29 2021
🚨︎ report
Blind Girl Here. Give Me Your Best Blind Jokes!

Do your worst!

πŸ‘︎ 5k
πŸ’¬︎
πŸ‘€︎ u/Leckzsluthor
πŸ“…︎ Jan 02 2022
🚨︎ report
Spiral - Chapter 05 - Setting Out

[First] | [Previous] | [Next]

═════

The Call of the Void had remained in port above Terra Nova for three megaseconds after the signing of the treaty. While the delay was frustrating, Aaren understood very well that it was a necessary one, as there were more crew to hire and equipment to install that would be absolutely necessary for the ship to function to her fullest if they were actually going to be leaving known space for any real length of time. It was galling that part of that continued function they needed to correct for was keeping Aaren’s brain firing the way that it was supposed to.

As the crew had expanded, so had the list of people who could be considered its leaders. Aaren was rapidly coming to know them all, and could thank Amelia for that fact indirectly. That she continued to visit the ship’s gym on deck 6 every morning to maintain her physical condition set an example for the others, and she had talked Aaren into resuming the same. Although none had been commanded or even asked to follow in that example, the entirety of the command staff now gathered in that gym each ship-day around 22:0. The types and intensity of exercises that each did varied, but all worked out together until 26:0. Vaar seemed to be alternating primarily between various forms of strength-training, so Aaren had no idea why Amelia called her workouts in particular β€˜a spectator sport.’ Well, given her typical choice of outfit for those sessions, Aaren had difficulty in not watching her, but that was beside the point! After showering and getting changed, they had time to grab breakfast before the morning staff meeting.

That was another new thing. At 30:0 each ship-day, those department heads gathered in a compartment just aft of the main bridge to discuss the state of the ship and crew. They talked about what was working and what needed work, about their plans for that ship-day, and myriad other small things that needed to be covered. Sometimes the meeting was only a few hectoseconds, and sometimes it ran as late as 33:0, but it was a part of the morning routine. From there, each went off to perform their respective duties, gathering again in the officers’ mess for lunch from 48:0 to 52:0 before returning to duty until 67:0. The rest

... keep reading on reddit ➑

πŸ‘︎ 27
πŸ’¬︎
πŸ‘€︎ u/Aetharan
πŸ“…︎ Jan 09 2022
🚨︎ report
UnitCrunch v0.35.0 released. Various feature requests resolved for the least naughtiest children.

MathHammer web app UnitCrunch just released v0.35.0 featuring a whole bunch of new things. Here are the highlights:

  • Toggle global modifiers!
  • Modifiers can now buff/debuff toughness.
  • Trigger effects on successful rolls.
  • More options for modifiers triggering mortal wounds (hit rolls, dice notation).

Full release post here including changelog.

Feedback welcome as ever.

πŸ‘︎ 157
πŸ’¬︎
πŸ‘€︎ u/dixhuit
πŸ“…︎ Dec 07 2021
🚨︎ report
v0.5.0 - Local Metadata Support + Tachiyomi Extension

It's been some time since our last release, so much so that I almost forget what v0.4 was all about. v0.5 is finally here and is the largest release so far with 32 features, 31 changes, 36 bugfixes delivered. Thank you for waiting and without further ado, let's get into it.

Local metadata is here and Kavita will now respect your metadata over your filenames and in addition, pull in all that data. You can now slice and dice against that metadata from collections and library detail to explore your data. In addition, some fields from EPUBs are mapped into a respective ComicInfo field, so book collectors rejoice, you can now sort by author.

In addition, we now have a Tachiyomi Extension! Starting with v0.5, you'll be able to hook up Tachiyomi with Kavita and start consuming content. While the extension is feature complete, we are still working on integrating progress sync for Kavita into the Tachiyomi application. This will come at a later date. Thank you to ThePromidius for building the app and the discord testers for beta testing for the past month.

This release is so jam packed, it's hard to pick out some other really cool features. Some of my favorites are PDF rendering has been multi-threaded and is way faster, bookmarks are stored differently and now allow for you to see image previews and also not worry that the underlying image is changed when you swap out the file. We updated to .NET 6, which comes with a ton of performance improvements and we've reworked all the cache logic to ensure that we only open your files when something new has happened.

I want to give a special shoutout to ChristofferGreen for again coming in and helping our downstream libraries get PDF support on ARM 64-bit machines and ThePromidius for working extremely hard to build out a Tachiyomi Extension for Kavita.

Lastly, the next release will not be this big. This release was so large due to the scope of changes to support local metadata and the fact that I took a holiday in December. I have replanned the work for the year on the Projects tab, so take a look there if you're curious what is coming. Our wiki will have updated pages in the coming week with how all the new features work. If anyone is interested in helping with updating the wiki, please drop me a pm in discord.

Note: Docker images older than v0.4.4 have been removed. Please try to keep up to date.

You can find the release here.

Added

  • Added: The co
... keep reading on reddit ➑

πŸ‘︎ 15
πŸ’¬︎
πŸ‘€︎ u/majora2007
πŸ“…︎ Jan 18 2022
🚨︎ report
Dropped my best ever dad joke & no one was around to hear it

For context I'm a Refuse Driver (Garbage man) & today I was on food waste. After I'd tipped I was checking the wagon for any defects when I spotted a lone pea balanced on the lifts.

I said "hey look, an escaPEA"

No one near me but it didn't half make me laugh for a good hour or so!

Edit: I can't believe how much this has blown up. Thank you everyone I've had a blast reading through the replies πŸ˜‚

πŸ‘︎ 20k
πŸ’¬︎
πŸ‘€︎ u/Vegetable-Acadia
πŸ“…︎ Jan 11 2022
🚨︎ report
What starts with a W and ends with a T

It really does, I swear!

πŸ‘︎ 6k
πŸ’¬︎
πŸ‘€︎ u/PsychedeIic_Sheep
πŸ“…︎ Jan 13 2022
🚨︎ report
Why did Karen press Ctrl+Shift+Delete?

Because she wanted to see the task manager.

πŸ‘︎ 11k
πŸ’¬︎
πŸ‘€︎ u/Eoussama
πŸ“…︎ Jan 17 2022
🚨︎ report
So 2 trees got arrested in the town I live...

Heard they've been doing some shady business.

πŸ‘︎ 7k
πŸ’¬︎
πŸ‘€︎ u/K1ll47h3K1n9
πŸ“…︎ Jan 18 2022
🚨︎ report
I was almost upset that my coffee tasted like dirt today

but then I remembered it was ground this morning.

Edit: Thank you guys for the awards, they're much nicer than the cardboard sleeve I've been using and reassures me that my jokes aren't stale

Edit 2: I have already been made aware that Men In Black 3 has told a version of this joke before. If the joke is not new to you, please enjoy any of the single origin puns in the comments

πŸ‘︎ 7k
πŸ’¬︎
πŸ‘€︎ u/scarf_spheal
πŸ“…︎ Jan 19 2022
🚨︎ report
What is the scariest tree?

BamBOO!

πŸ‘︎ 6k
πŸ’¬︎
πŸ‘€︎ u/K1ll47h3K1n9
πŸ“…︎ Jan 18 2022
🚨︎ report
What is a a bisexual person doing when they’re not dating anybody?

They’re on standbi

πŸ‘︎ 11k
πŸ’¬︎
πŸ‘€︎ u/Toby-the-Cactus
πŸ“…︎ Jan 12 2022
🚨︎ report
Geddit? No? Only me?
πŸ‘︎ 6k
πŸ’¬︎
πŸ‘€︎ u/shampy311
πŸ“…︎ Dec 28 2021
🚨︎ report
I wanna hear your best airplane puns.

Pilot on me!!

πŸ‘︎ 3k
πŸ’¬︎
πŸ‘€︎ u/Paulie_Felice
πŸ“…︎ Jan 07 2022
🚨︎ report
E or ß?
πŸ‘︎ 9k
πŸ’¬︎
πŸ‘€︎ u/Amazekam
πŸ“…︎ Jan 03 2022
🚨︎ report
My ten-year-old daughter came up with this at dinner tonight: What do you get if put a copy of Macbeth on top of a dictionary?

A play on words.

πŸ‘︎ 5k
πŸ’¬︎
πŸ‘€︎ u/ah1887
πŸ“…︎ Jan 20 2022
🚨︎ report
Which actor drives the least?

Christopher Walken

πŸ‘︎ 3k
πŸ’¬︎
πŸ‘€︎ u/TR1771N
πŸ“…︎ Jan 18 2022
🚨︎ report
What did Spartacus say when the lion ate his wife?

Nothing, he was gladiator.

πŸ‘︎ 9k
πŸ’¬︎
πŸ‘€︎ u/rj104
πŸ“…︎ Jan 15 2022
🚨︎ report
Pun intended.
πŸ‘︎ 5k
πŸ’¬︎
πŸ‘€︎ u/Sharmaji1301
πŸ“…︎ Jan 15 2022
🚨︎ report
No spoilers
πŸ‘︎ 9k
πŸ’¬︎
πŸ‘€︎ u/Onfour
πŸ“…︎ Jan 06 2022
🚨︎ report
Should we create an English word for the 'day after tomorrow'?

Or would that be too forward thinking?

πŸ‘︎ 2k
πŸ’¬︎
πŸ‘€︎ u/afunkysquirrel
πŸ“…︎ Jan 19 2022
🚨︎ report
Covid problems
πŸ‘︎ 7k
πŸ’¬︎
πŸ‘€︎ u/theincrediblebou
πŸ“…︎ Jan 12 2022
🚨︎ report
These aren't dad jokes...

Dad jokes are supposed to be jokes you can tell a kid and they will understand it and find it funny.

This sub is mostly just NSFW puns now.

If it needs a NSFW tag it's not a dad joke. There should just be a NSFW puns subreddit for that.

Edit* I'm not replying any longer and turning off notifications but to all those that say "no one cares", there sure are a lot of you arguing about it. Maybe I'm wrong but you people don't need to be rude about it. If you really don't care, don't comment.

πŸ‘︎ 12k
πŸ’¬︎
πŸ‘€︎ u/Lance986
πŸ“…︎ Dec 15 2021
🚨︎ report
Spi__
πŸ‘︎ 6k
πŸ’¬︎
πŸ‘€︎ u/Fast_Echidna_8520
πŸ“…︎ Jan 11 2022
🚨︎ report
Notational Battle Report (Sky Sentinel & Armodax vs. Cthugrosh and Cyber Khan) with a 5/5 action dice start

Hello again and welcome to another Notational battle report. As always, there are no pictures. Instead I’ll be using the Dice Notation system I outlined here: https://monpoc.net/34-general/246-dice-notation-for-the-monsterpocalypse

SETUP

Jeff vs. Colin

J: Sky Sentinel & Armodax (SS & AD)

C: Cthugrosh and Cyber Khan (CG & CK)

J wins the roll, chooses to go second on Carnage Corners

5/5 A Dice (IRL Game)

This format is a playtest/experiment with proposed changes to the Crush Hour rule set that were outlined by the lead developer of Monsterpocalypse in a livestream in February 2020. The proposal was twofold: The winner of the roll chose whether to go first or second, and the first player got 5 dice in their Unit pool at the start of the game, then 5 dice in their unit pool on their second turn. Let’s see how this plays out.

C U5: 5u

J U10: 9u, 1a +1p

C U5: 4u, Abduct

Here we have the opening turns of the game. No Shadow Sun Industries building Underground Network shenanigans this game. Note how the first player ends with 8 units on the board, tied with the second player. Also note how they are behind on tempo.

J M10: 1+5p (Advanced with 0 steps or actions)

The second player gets the first monster turn, and uses it to jockey for position. Note the lack of steps or actions, saving 10 dice for the following turn.

C M10: 0+7p

  • CG Rampage 1/4/7 +8p, 2s
  • CK Swat 1/4/2 +2p, Summon

Despite taking the second monster turn, the enemy monsters are not in a position to be attacked, so the first player now uses their monsters to build a large pool of dice and disrupt the enemy power base.

J M10: 6+3p, Tectonic Shift

  • SS Body Slam CK 2/3/6 3dmg +2p
  • AD Throw CK 2/4/5 4dmg +7p, 2s (CK@4)

The second player takes advantage of their tempo and positional advantage to absolutely rock Cyberkhan. 7 damage in the opening alpha strike of the game, which the second player could do due to not having to split their action dice.

C M5: 8+5p, 1s

  • CK Throw SS 3/5/5 3dmg +3p
  • CG Throw SS 1/4/7 3dmg +2p (SS@5)

The first player responds with 6 damage on Sky Sentinel, but being forced into a unit turn afterwards.

J M2: 7+3p, Tec Shift

  • SS Throw CK 1/4/9 3dmg +2p (CK@1)

The second player takes a 2 action dice monster turn and nails Cyberkhan at 1 hp.

**C U10: 7u, Ignite, Extinguish, Ignit

... keep reading on reddit ➑

πŸ‘︎ 5
πŸ’¬︎
πŸ‘€︎ u/Gearb0x
πŸ“…︎ Mar 29 2020
🚨︎ report
This subreddit is 10 years old now.

I'm surprised it hasn't decade.

πŸ‘︎ 14k
πŸ’¬︎
πŸ‘€︎ u/frexyincdude
πŸ“…︎ Jan 14 2022
🚨︎ report

Please note that this site uses cookies to personalise content and adverts, to provide social media features, and to analyse web traffic. Click here for more information.