from totem to vermine - v0.0.12
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
<ol class="items-list">
|
||||
<li class="item flexrow items-header">
|
||||
<div class="item-name" style="flex:4;">{{ localize 'IDENTITY.name'}}</div>
|
||||
<div class="item-clew">{{ localize 'TOTEM.clew'}}</div>
|
||||
<div class="item-mobility">{{ localize 'TOTEM.mobility'}}</div>
|
||||
<div class="item-rarity">{{ localize 'TOTEM.rarity'}}</div>
|
||||
<div class="item-reliability">{{ localize 'TOTEM.reliability'}}</div>
|
||||
<div class="item-clew">{{ localize 'VERMINE.clew'}}</div>
|
||||
<div class="item-mobility">{{ localize 'VERMINE.mobility'}}</div>
|
||||
<div class="item-rarity">{{ localize 'VERMINE.rarity'}}</div>
|
||||
<div class="item-reliability">{{ localize 'VERMINE.reliability'}}</div>
|
||||
<div class="item-controls">
|
||||
<a class="item-control item-create" title="Create item" data-type="defense"><i class="fas fa-plus"></i> Add item</a>
|
||||
</div>
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
<div class="effect-source">Source</div>
|
||||
<div class="effect-source">Duration</div>
|
||||
<div class="item-controls effect-controls flexrow">
|
||||
<a class="effect-control" data-action="create" title="{{localize 'TOTEM.EffectCreate'}}">
|
||||
<i class="fas fa-plus"></i> {{localize "TOTEM.Add"}}
|
||||
<a class="effect-control" data-action="create" title="{{localize 'VERMINE.EffectCreate'}}">
|
||||
<i class="fas fa-plus"></i> {{localize "VERMINE.Add"}}
|
||||
</a>
|
||||
</div>
|
||||
</li>
|
||||
@@ -21,13 +21,13 @@
|
||||
<div class="effect-source">{{effect.sourceName}}</div>
|
||||
<div class="effect-duration">{{effect.duration.label}}</div>
|
||||
<div class="item-controls effect-controls flexrow">
|
||||
<a class="effect-control" data-action="toggle" title="{{localize 'TOTEM.EffectToggle'}}">
|
||||
<a class="effect-control" data-action="toggle" title="{{localize 'VERMINE.EffectToggle'}}">
|
||||
<i class="fas {{#if effect.disabled}}fa-check{{else}}fa-times{{/if}}"></i>
|
||||
</a>
|
||||
<a class="effect-control" data-action="edit" title="{{localize 'TOTEM.EffectEdit'}}">
|
||||
<a class="effect-control" data-action="edit" title="{{localize 'VERMINE.EffectEdit'}}">
|
||||
<i class="fas fa-edit"></i>
|
||||
</a>
|
||||
<a class="effect-control" data-action="delete" title="{{localize 'TOTEM.EffectDelete'}}">
|
||||
<a class="effect-control" data-action="delete" title="{{localize 'VERMINE.EffectDelete'}}">
|
||||
<i class="fas fa-trash"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
@@ -20,6 +20,6 @@
|
||||
{{/each}}
|
||||
</ol>
|
||||
<h4>{{localize 'ITEMS.weapons'}}</h4>
|
||||
{{> "systems/totem/templates/actor/parts/actor-weapons.hbs"}}
|
||||
{{> "systems/vermine2047/templates/actor/parts/actor-weapons.hbs"}}
|
||||
<h4>{{localize 'ITEMS.defenses'}}</h4>
|
||||
{{> "systems/totem/templates/actor/parts/actor-defenses.hbs"}}
|
||||
{{> "systems/vermine2047/templates/actor/parts/actor-defenses.hbs"}}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<h3>Caractéristiques</h3>
|
||||
<div class="grid grid-4col">
|
||||
{{#each config.abilityCategories as |abilityCategory ackey|}}
|
||||
<div>
|
||||
<div class="characteristics">
|
||||
<h4 class="align-center">{{ smarttl "ABILITY_CATEGORIES" ackey }}</h4>
|
||||
{{#each @root.system.abilities as |ability key|}}
|
||||
{{#if (eq ability.category ackey) }}
|
||||
@@ -16,7 +16,7 @@
|
||||
{{/each}}
|
||||
</div>
|
||||
<h3>Compétences</h3>
|
||||
<div class="grid grid-cols-3">
|
||||
<div class="grid grid-2col">
|
||||
{{#each config.skillCategories as |skillCategory sckey|}}
|
||||
<div class="col">
|
||||
<h4>{{ smarttl "SKILLS_CATEGORIES" sckey }}</h4>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<!-- HEADER -->
|
||||
<header class="char-header flexrow flex-group-center items-center">
|
||||
<section class="char-details" style="flex:50%;">
|
||||
<header class="char-header grid grid-2col">
|
||||
<section class="char-details">
|
||||
<h1 class="char-name flexrow flex-group-left">
|
||||
<label>{{ localize 'IDENTITY.name' }}</label>
|
||||
<input name="name" type="text" value="{{actor.name}}" placeholder="{{localize "TOTEM.CharacterNamePlaceholder"}}" />
|
||||
<input name="name" type="text" value="{{actor.name}}" placeholder="{{localize "VERMINE.CharacterNamePlaceholder"}}" />
|
||||
</h1>
|
||||
<div class="profile flexrow flex-group-center">
|
||||
<label>{{ localize 'IDENTITY.profile' }}</label>
|
||||
@@ -14,19 +14,19 @@
|
||||
<input type="number" name="system.identity.age" value="{{ system.identity.age }}" data-dtype="Number"/>
|
||||
</div>
|
||||
</section>
|
||||
<section class="char-level" style="flex:50%;">
|
||||
<div class="flexrow flex-group-left">
|
||||
<section class="char-level">
|
||||
<div class="char-vermine2047 flexrow flex-group-left">
|
||||
<label for="system.identity.totem">{{ localize 'IDENTITY.totem' }}</label>
|
||||
<select name="system.identity.totem" class="w-full">
|
||||
{{selectOptions config.totems selected=system.identity.totem localize=true}}
|
||||
</select>
|
||||
</div>
|
||||
<div class="reputation flexrow flex-group-center">
|
||||
<label>{{ localize 'TOTEM.reputation' }}</label>
|
||||
<label>{{ localize 'VERMINE.reputation' }}</label>
|
||||
<input name="system.attributes.reputation.value" type="text" value="{{system.attributes.reputation.value }}" data-dtype="Number" />
|
||||
</div>
|
||||
<div class="experience flexrow flex-group-center">
|
||||
<label>{{ localize 'TOTEM.experience' }}</label>
|
||||
<label>{{ localize 'VERMINE.experience' }}</label>
|
||||
<input name="system.details.xp.value" type="text" value="{{system.attributes.xp.value}}" data-dtype="Number" />
|
||||
</div>
|
||||
</section>
|
||||
|
||||
Reference in New Issue
Block a user