Skip to content

Commit

Permalink
fixing commit revert mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil Behreberg committed Jan 22, 2016
1 parent 0d66119 commit a4eadcb
Show file tree
Hide file tree
Showing 22 changed files with 6,466 additions and 1,806 deletions.
17 changes: 17 additions & 0 deletions Call_of_Cthulhu_7th_Ed_Chinese_Traditional/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# 克蘇魯的呼喚第7版

這是繁體翻譯的克蘇魯的呼喚第7版.v1.0.
是從作者Matthew Carpenter所製作的人物表所翻譯的版本(2016-01-20).
你可能注意到沒有\"大成功值\"\"極端成功值\".這是因為已經移到擲骰按鈕裡面了.
當你使用擲骰按鈕你會看到聊天紀錄上會出現\"成功值/大成功值/極端成功值\".
用你覺得適合的門檻來判斷是否成功.至於武器則選擇一個你武器的技能進行檢定.
你可以從自訂的10個來進行檢定.而武器傷害可以拉選\"+0\", \"+1/2db\"\"+db.\"來選擇是否加入傷害加成.

你可以在這找到表的API腳本 [extended_autocalc.js](extended_autocalc.js). 這可以自動計算傷害加成和體格.

# 目前版本
1.0 [Screenshot](coc_7th_ed.png)

##v1.0 (2016-1-20)

建立
180 changes: 180 additions & 0 deletions Call_of_Cthulhu_7th_Ed_Chinese_Traditional/coc_7th_ed.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,180 @@
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}

select {
margin: 0;
padding: 0;
}

/* Tweak repeating section buttons so they have a bottom margin and dont overflow when in edit mode. */
div[class^="repcontrol"] {
margin-bottom: 5px;
}
div[class="repcontainer editmode"] ~ div[class^="repcontrol"] button[class="btn repcontrol_add"] {
display: inline-block!important;
visibility: hidden;
}

h4.sheet-section-head {
background-color: black;
color: white;
text-align: center;
font-weight: normal;
font-style: normal;
}

div.sheet-section {
border: 1px solid black;
padding: 1%;
margin: 0 0 1% 0;
}

table td.sheet-attr {
width: 13.33%;
height: 58px;
}

table td.sheet-attr-label {
height: 58px;
font-size: 120%;
text-align: center;
}

input[type="text"].sheet-attr-input {
width: 54px;
height: 58px;
font-size: 200%;
text-align: center;
}

table td.sheet-attr-roll {
height: 58px;
text-align: center;
}

input.sheet-secondary-attr-input {
width: 100%;
text-align: center;
}

input[type="number"].sheet-secondary-attr-input {
width: 100%;
text-align: center;
}

table td.sheet-skill-label {
width: 100%;
}

input[type="text"].sheet-skill-input {
width: 30px;
text-align: center;
}

input[type="number"].sheet-skill-input {
width: 30px;
text-align: center;
}

td.sheet-otherskill-reminder {
font-size: 85%;
}

texarea.sheet-backstory-box {
height: 75px;
}


/* Roll Templates */
.sheet-rolltemplate-coc table {
width: 100%;
border: 1px solid black;
color: black;
background: #FFFFFF;
}
.sheet-rolltemplate-coc caption {
text-align: center;
background: black;
color: white;
font-weight: bold;
padding: 2px;
border: 1px solid black;
line-height: 1.6em;
}
.sheet-rolltemplate-coc td {
padding: 2px;
border-bottom: 1px solid black;
}
.sheet-rolltemplate-coc td.sheet-template_label {
font-weight: bold;
}
.sheet-rolltemplate-coc td.sheet-template_value {
text-align: center;
}
.sheet-rolltemplate-coc .inlinerollresult {
display: inline-block;
min-width: 1.5em;
text-align: center;
border: 2px solid black;
background: #BEBEBE;
}
.sheet-rolltemplate-coc .inlinerollresult.fullcrit {
border: 2px solid black;
background: #BEBEBE;
}
.sheet-rolltemplate-coc .inlinerollresult.fullfail {
border: 2px solid black;
background: #BEBEBE;
}
.sheet-rolltemplate-coc .inlinerollresult.importantroll {
border: 2px solid black;
background: #BEBEBE;
}

.sheet-rolltemplate-coc-attack table {
width: 100%;
border: 1px solid black;
color: black;
background: #FFFFFF;
}
.sheet-rolltemplate-coc-attack caption {
text-align: center;
background: black;
color: white;
font-weight: bold;
padding: 2px;
border: 1px solid black;
line-height: 1.6em;
}
.sheet-rolltemplate-coc-attack td {
padding: 2px;
border-bottom: 1px solid black;
}
.sheet-rolltemplate-coc-attack td.sheet-template_label {
font-weight: bold;
}
.sheet-rolltemplate-coc-attack td.sheet-template_value {
text-align: center;
}
.sheet-rolltemplate-coc-attack .inlinerollresult {
display: inline-block;
min-width: 1.5em;
text-align: center;
border: 2px solid black;
background: #BEBEBE;
}
.sheet-rolltemplate-coc-attack .inlinerollresult.fullcrit {
border: 2px solid black;
background: #BEBEBE;
}
.sheet-rolltemplate-coc-attack .inlinerollresult.fullfail {
border: 2px solid black;
background: #BEBEBE;
}
.sheet-rolltemplate-coc-attack .inlinerollresult.importantroll {
border: 2px solid black;
background: #BEBEBE;
}
Loading

0 comments on commit a4eadcb

Please sign in to comment.