滚动我的D&D角色的能力得分


18

在《龙与地下城》中,角色的一些最重要属性是能力得分。这六个能力有6个能力得分。这些能力是力量,敏捷,体质,智力,智慧和魅力。

在确定角色得分时,我使用以下过程:滚动4d6,以任意顺序降低最低得分。这意味着我将四个骰子骰子掷出4个,忽略最低的结果,将另外三个骰子相加。这完成了6次。我会以任何方式将结果编号分配给这些能力。

我用于为技能分配分数的系统是为角色的最重要技能分配最高的分数,这取决于角色的等级,由于每个人都需要宪法而将第二高的分数分配给体质,并任意分配其他四个分数。

下表列出了各种课程的最重要技能:

Bard - Charisma
Cleric - Wisdom
Druid - Wisdom
Fighter - Stregth
Monk - Wisdom
Paladin - Charisma
Rogue - Dexterity
Sorcerer - Charisma
Wizard - Intelligence

挑战:我要给您(作为输入)我的角色课的第一个字母(大写)。我希望您滚动能力得分并将其分配给上述能力,然后按照力量,敏捷,体质,智力,智慧,魅力等顺序输出。

例:

Input: R
Rolls: 4316 3455 3633 5443 2341 6122
Scores: 13 14 12 13 9 10
Ordering: Highest goes to dexterity. Second goes to Constitution.
Output: 13 14 13 12 9 10
or
Output: 9 14 13 10 12 13
or etc.

可以以任何清晰地将数字分开并以适当顺序排列的格式给出输出。

以字节为单位的最短代码获胜。禁止标准漏洞。

Answers:


6

CJam,43 41 40字节

{6a4*:mr$0Zt:+}6*]$2m<"FRXWCDM"r#4e<3e\p

感谢@ Sp3000打高尔夫球1个字节。

CJam解释器中在线尝试。

怎么运行的

{             }6*                       e# Repeat 6 times:
 6a4*                                   e#   Push [6 6 6 6].
     :mr                                e#   Replace each six with a pseudo-randomly
                                        e#   generated integer in [0 ... 5].
        $                               e#   Sort the results.
         0Zt                            e#   Replace the lowest result by 3.
            :+                          e#   Add all four integers
                ]                       e# Wrap the 6 generated integers in an array.
                 $                      e# Sort.
                  2m<                   e# Rotate 2 units to the left to assign the
                                        e# second highest result to Constitution.
                     "FRXWCDM"          e# Push that string.
                              r#        e# Find the index of the input.
                                        e# The string doesn't contain B, P or S, so
                                        e# those push -1.
                                4e<     e# Truncate the index at 4. This way, C, D
                                        e# M all push 4.
                                   3e\  e# Swap the integer at that index with the
                                        e# one at index 3, i.e., the highest one.
                                      p e# Print.

6

Python 3,137个字节

from random import*
S=sorted
*L,c,h=S(3+sum(S(map(randrange,[6]*4))[1:])for _ in[0]*6)
L[:"FRW BPS".find(input())]+=h,
L[:2]+=c,
print(L)

输出整数列表,如[14, 9, 13, 12, 12, 13]F

从输入char到赋值的映射非常好。首先,我们从L包含最低的4卷开始,然后我们要插入

  • 根据输入将最高滚动到正确位置,然后
  • 排名第二高的是构成指标。

对于每个输入,我们希望获得最高滚动的索引是:

Index    Ability          Input(s)
----------------------------------
0        Strength         F
1        Dexterity        R
2        Intelligence     W
3        Wisdom           CDM
4        Charisma         BPS

令人惊讶的是,我们只需要这样做"FRW BPS".find(input()),因为:

  • FRW 按预期工作,给出各自的指标,
  • CDM不存在,因此find给出-1,对于4元素列表,其索引为3,并且
  • BPS 分别给出4、5、6,但是过冲并不重要,因为我们只能在末尾附加一个元素。

1

J,100 97字节

(0;0,b)C.^:(b>0)(0;1 2)C.\:~+/"1]1}."1/:~"1]1+?6 4$4$6[b=.('BCDFMPRSW'i.1!:1[1){5 4 4 0 4 5 1 5 3

接受输入 STDIN


我听说Prolog越来越嫉妒...
Alex A.

@AlexA。我们只是休息一下,在此同时我可以尝试其他事情……
Fatalize 2015年

0

C ++-387字节

这里的第一次尝试是,需要进行更多的打高尔夫球,特别是在确定正在使用的级别上。

打高尔夫球:

#include<cstdlib>
#include<cstdio>
#include<time.h>
int main(int c,char**v){char*o=*v,l=*v[1];int b=-1,s=-1,i=6,x=0,q=l>=67&&l<=68||l==77?4:l==70?0:l==87?3:l==82?1:5;srand(time(0));for(;i-->0;){int w=9,d=4,u=3,t;for(;d-->0;){t=rand()%6;if(t<w){u+=w<9?w:0;w=t;}else u+=t;}if(u>s){c=s;s=u;u=c;}if(s>b){c=s;s=b;b=c;}if(u>=0)o[x++]=u;}for(i=0;i<6;i++)printf("%d ",i==2?s:(i==q?b:o[--x]));}

而不是高尔夫:

#include<cstdlib>
#include<cstdio>
#include<time.h>
int main(int c,char**v)
{
    //name of program must be at least 4 chars
    char*others=*v,clas=*v[1];
    int desired = clas>=67&&clas<=68||clas==77?4:clas==70?0:clas==87?3:clas==82?1:5; //TODO:

    srand(time(0));
    int best=-1,second=-1,i=6,otherIndex=0;
    for(;i-->0;)
    {
        int lowest=9,diecount=4,sum=3;
        for(;diecount-->0;)
        {
            int loc=rand()%6;
            if (loc<lowest)
            {
                sum+=lowest<9?lowest:0;
                lowest=loc;
            }
            else
            {
                sum+=loc;
            }
        }
        if(sum>second)
        {
            c=second;second=sum;sum=c;
        }
        if(second>best)
        {
            c=second;second=best;best=c;
        }
        if(sum>=0)
        {
            others[otherIndex++]=sum;
        }
    }

    for(i=0;i<6;i++)
    {
        printf("%d ",i==2?second:(i==desired?best:others[--otherIndex]));
    }

    getchar();
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.