diff --git a/Lames du Cardinal v2/src/abstracts/variables.sass b/Lames du Cardinal v2/src/abstracts/variables.sass
index f60e68f4881..f2fee0da1fa 100644
--- a/Lames du Cardinal v2/src/abstracts/variables.sass
+++ b/Lames du Cardinal v2/src/abstracts/variables.sass
@@ -2,4 +2,5 @@ $emgrey:#446469
$emblue:#395b63
$emred:#672418
-$IMAGES_ROOT: 'https://raw.githubusercontent.com/Roll20/roll20-character-sheets/refs/heads/master/lames-cardinal-v2/assets/'
\ No newline at end of file
+//$IMAGES_ROOT: 'https://raw.githubusercontent.com/Calmacil/lames-cardinal-v2/main/assets/'
+$IMAGES_ROOT: 'https://raw.githubusercontent.com/Roll20/roll20-character-sheets/master/Lames du Cardinal v2/assets/'
\ No newline at end of file
diff --git a/Lames du Cardinal v2/src/components/nstatebox/nstatebox.pug b/Lames du Cardinal v2/src/components/nstatebox/nstatebox.pug
index 1b26b743e37..66a54c93162 100644
--- a/Lames du Cardinal v2/src/components/nstatebox/nstatebox.pug
+++ b/Lames du Cardinal v2/src/components/nstatebox/nstatebox.pug
@@ -26,8 +26,8 @@ mixin healthBox(name, letter=none)
label.healthboxwrapper
+nstateBox(name).healthbox
+nstateOption(' ').health_ok
- +nstateOption('/').health_tenacity
+ +nstateOption('⟋').health_tenacity
+nstateOption('X').health_wound
- +nstateOption('\\').health_longTenacity
+ +nstateOption('⟍').health_longTenacity
if letter != none
span!= letter
\ No newline at end of file
diff --git a/Lames du Cardinal v2/src/components/nstatebox/nstatebox.sass b/Lames du Cardinal v2/src/components/nstatebox/nstatebox.sass
index 2bd3e46b42a..4f9705104ab 100644
--- a/Lames du Cardinal v2/src/components/nstatebox/nstatebox.sass
+++ b/Lames du Cardinal v2/src/components/nstatebox/nstatebox.sass
@@ -27,3 +27,15 @@
&[value="2"] ~ span.nstateopt.health_longTenacity,
&[value="3"] ~ span.nstateopt.health_wound
display: flex
+
+ &> span.nstateopt
+ font-size: 1.8em
+
+ &.health_tenacity,
+ &.health_longTenacity
+ margin-left: -18px
+ margin-top: -3px
+
+ &.health_wound
+ margin-left: -15px
+
diff --git a/Lames du Cardinal v2/src/components/profile/profile.pug b/Lames du Cardinal v2/src/components/profile/profile.pug
index 2004c710b91..cf4a9c98284 100644
--- a/Lames du Cardinal v2/src/components/profile/profile.pug
+++ b/Lames du Cardinal v2/src/components/profile/profile.pug
@@ -7,6 +7,7 @@ mixin profile(name)
option(value='aventurier') Aventurier
option(value='commercant') Commerçant
option(value='saltimbanque') Saltimbanque
+ option(value='valet') Valet
+optgroup('Lettrés')
option(value='artiste') Artiste
option(value='erudit') Érudit
diff --git a/Lames du Cardinal v2/src/components/widgets/widgets.pug b/Lames du Cardinal v2/src/components/widgets/widgets.pug
index 0f1fdbea57d..73c1a38e2e6 100644
--- a/Lames du Cardinal v2/src/components/widgets/widgets.pug
+++ b/Lames du Cardinal v2/src/components/widgets/widgets.pug
@@ -38,7 +38,7 @@ mixin numberInput(name, value='')
- {string} id - The `id` inpu attribute (and the `for` label attribute)
- {string} value - The default value
mixin numberLabelled(name, label, id, value='')
- label(for=id)&attributes(attributes)
+ label(for=id)&attributes(attributes).textLabelled
span!= label
+numberInput(name, value)(id=id)
diff --git a/Lames du Cardinal v2/src/components/widgets/widgets.sass b/Lames du Cardinal v2/src/components/widgets/widgets.sass
index 8d270ae07c0..5e57774052d 100644
--- a/Lames du Cardinal v2/src/components/widgets/widgets.sass
+++ b/Lames du Cardinal v2/src/components/widgets/widgets.sass
@@ -54,12 +54,17 @@
font-weight: bold
width: 20%
- &> input[type=text]
+ &> input[type=text],
+ &> input[type=number]
border: none
background: none
width: calc(80% - 10px)
margin-left: 10px
+ &> input[type=number]
+ width: calc(70% - 10px)
+ text-align: right
+
/** Expand switches */
label
&> input[type=checkbox][name='attr_expand']
diff --git a/Lames du Cardinal v2/src/modules/1-personnage/personnage.pug b/Lames du Cardinal v2/src/modules/1-personnage/personnage.pug
index 00d5ec805ee..6a495058c91 100644
--- a/Lames du Cardinal v2/src/modules/1-personnage/personnage.pug
+++ b/Lames du Cardinal v2/src/modules/1-personnage/personnage.pug
@@ -1,10 +1,10 @@
section.page#page-personnage
- div#name
- +textLabelled('nom', 'Nom', 'name')
div.col.col-2
+ +textLabelled('nom', 'Nom', 'name')
+textLabelled('age', 'Âge')
+textLabelled('sex', 'Sexe')
div.col.col-2
+ +numberLabelled('pex', 'Points d’exp.', 'pex', 0)
+profile('profile-1')
+profile('profile-2')
div#arcanes
diff --git a/Lames du Cardinal v2/src/modules/1-personnage/personnage.sass b/Lames du Cardinal v2/src/modules/1-personnage/personnage.sass
index cda52f0f85d..d7c75a981c0 100644
--- a/Lames du Cardinal v2/src/modules/1-personnage/personnage.sass
+++ b/Lames du Cardinal v2/src/modules/1-personnage/personnage.sass
@@ -2,9 +2,9 @@
flex-direction: row
flex-wrap: wrap
align-content: flex-start
- &> #name
- width: 50%
- height: 30px
+ // &> #name
+ // width: 50%
+ // height: 30px
&> #arcanes
padding-top: 12px
width: 100%
diff --git a/Lames du Cardinal v2/src/modules/2-competences/competences.pug b/Lames du Cardinal v2/src/modules/2-competences/competences.pug
index 6dfc8bdc323..d132eb569d2 100644
--- a/Lames du Cardinal v2/src/modules/2-competences/competences.pug
+++ b/Lames du Cardinal v2/src/modules/2-competences/competences.pug
@@ -35,6 +35,7 @@ section.page#page-competences
div#freeskills
div#escrime.col.col-2
+headerSkill('escrime', 'Escrime', 4).blue
+ +textareaInput('escrime_notes')
div#occultisme.col.col-2
+headerSkill('occultisme', 'Occultisme', 0).red
- +textInput('occultisme_notes', '')
\ No newline at end of file
+ +textareaInput('occultisme_notes', '')
\ No newline at end of file
diff --git a/Lames du Cardinal v2/src/modules/2-competences/competences.sass b/Lames du Cardinal v2/src/modules/2-competences/competences.sass
index 05ea6daf46a..f3b6f08b918 100644
--- a/Lames du Cardinal v2/src/modules/2-competences/competences.sass
+++ b/Lames du Cardinal v2/src/modules/2-competences/competences.sass
@@ -36,4 +36,11 @@
border: none
border-bottom: dotted black 1px
border-radius: 0
- width: 100%
\ No newline at end of file
+ width: 100%
+
+ & textarea
+ @include textareaLined(24px, 22px)
+ font-family: 'Shadows Into Light'
+ font-style: italic
+ font-size: 16px
+ width: 97%
\ No newline at end of file