Jump to content

xalabin

Member
  • Posts

    36
  • Joined

  • Last visited

Posts posted by xalabin

  1. On 6/2/2019 at 12:17 PM, RosenMcStern said:

    As soon as we have assembled a real cover instead of the mockup we are using on RPG Meeting. A cover is not particularly important for a PDF only product which not everybody is going to print out, but on DTRPG it helps the product stand out among the crowd.

    In any case, if anyone purchases the product on RPG Meeting and eventually wants it on DT, just ask and we will send you a coupon when available.

    When you have it i want that coupon 😉

  2. On the first version of my script i used d12 whenever possible until i realized that i got 1d12+1d2 instead of 2d10+1d2.
    The second one is the value showed on the table and has a better minimun damage so i modified for no use d12.

    I cheched my algorythm until STR+SIZ=1111 just for fun, on table i play on human levels, the bigger thing i used was a uro and a giant spider not titans 😋

    PD: if you want a bigger table is easy for my print it until the values you need or you can use it on https://repl.it/@NestorC/Mythras-Damage-Modifier

  3. There is no d12 over STR+SIZ>61 because the step for STR+SIZ 111-120 is 2d10+1d2 and not 1d12+1d10

    This is my own, dirty script:

    from math import ceil
    from math import fabs

    def calcbd(num):
      dices=2
      results=[]
      while not results:
        if dices<3:
          for i in [6,8,10]:
            for j in [6,8,10]:
              if i*(dices-1)+j+2==num:
                results.append((dices,i,j))
        else:
          for i in [2,4,6,8,10]:
            for j in [2,4,6,8,10]:
              if i*(dices-1)+j+2==num:
                results.append((dices,i,j))
        dices+=1
      choice=()
      for i in results:
        if i>choice:
          choice=i
        if i[1]==i[2] and i[0] <3:
          return i
      return choice

    def print_and_method(STR,SIZ):
      if STR+SIZ<51:
        bd=""
        dice=(ceil((STR+SIZ)/5)-5)*2
        if dice<0:
          bd="-1d"
        else:
          bd="+1d"
        if dice ==0:
          print 0
        else:
          print bd+str(int(fabs(dice)))

      elif STR+SIZ > 50 and STR+SIZ <61:
        print "+1d12"
      elif STR+SIZ>60:
        maxdmg=ceil((STR+SIZ)/10)*2
        bd=calcbd(maxdmg)

        if bd[1]==bd[2]:
          print "+"+str(bd[0])+"d"+str(bd[1])
        else:
          print "+"+str(bd[0]-1)+"d"+str(bd[1])+"+1d"+str(bd[2])

     

  4. If you give a size class L to a human it will be mechanical implications so it is not a light decision.

    For little Jhon and RD100 rules, i will prefer use a narrative description and a proper STR value with size class m.

    Size class are ok if you don't like high numbers on str and size characteristic for things like mechas or Godzilla.

  5. So for calculate the size class you can get the mass and fit on the scale?

    A Board of 80kg has Size class M (50-120kg), str 9,  an a giraffe of 5m, 1200kg, size XXXL (1000-2000kg),  str 6?

    An animal of size L, 100kg, has str 3, so can brawl with an other animal size m, 100 kg, str 13?

    It implies that if you are a human size m, str 10 you must be at least +-85kg of mass...

  6. 23 hours ago, RosenMcStern said:

    It's public! It is not accessible from the RPG Meeting main page - it is just a temporary hosting to exploit the advanced Joomla features on RPG Meeting - but it is intended to be public.

    Character creation coming soon...

    Great!

  7. t is fine for me but if some disagree it, what about complication or extended event?

    Challenge is nice too, remembers me the hero with a thousand faces.

    Talking about it, more detailed examples will be welcome.

    • Simple conflict, moving alone/in group a big rock
    • Naval travel.
    • Search the path on the jungle.
    • Gollum Vs Bilbo Riddle contest.
    • Trade with a merchant.
    • Visit to the haunted house.
    • Be declared innocent on Inquisition trial.



     

  8. Thanks RosenMcStern

    Preguntaré también en rpgnet para contactar con el tal CLAVDIVS y en los foros de runequest6 en español a ver si se puede organizar algo.

    Muminalver, El_octogono ¿Tenéis usuarios también en http://runequest6.mforos.com  o en google plus en la comunidad https://plus.google.com/u/0/communities/117952026183484959558  ?

    Lo digo para centralizar un poco el tema.
    Si no, nada, por mi parte intentaré coordinar un poco entre un sitio y otro a ver que sale.

×
×
  • Create New...