Add Shaddar est Mudor.json
to public/data
: introduce new JSON file for data management.
This commit is contained in:
File diff suppressed because one or more lines are too long
BIN
public/data/Faelyn Eichenhauch.pdf
Normal file
BIN
public/data/Faelyn Eichenhauch.pdf
Normal file
Binary file not shown.
1
public/data/Iboron Stich.json
Normal file
1
public/data/Iboron Stich.json
Normal file
File diff suppressed because one or more lines are too long
1
public/data/Shaddar est Mudor.json
Normal file
1
public/data/Shaddar est Mudor.json
Normal file
File diff suppressed because one or more lines are too long
@@ -205,18 +205,12 @@ export default function SheetHeader({jsonData}: { jsonData: CharacterData }) {
|
|||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
<div className="ms-5 w-[100%] flex items-center gap-2">
|
<div className="ms-5 w-[100%] flex items-center gap-2">
|
||||||
{Array.from({length: jsonData.attr.sp - jsonData.attr.permanentSP.lost}, (_, index) => (
|
{Array.from({length: jsonData.attr.sp}, (_, index) => (
|
||||||
<div
|
<div
|
||||||
key={`sp-available-${index}`}
|
key={`sp-available-${index}`}
|
||||||
className="rounded-full w-5 h-5 bg-gradient-to-br from-violet-700 to-violet-500"
|
className="rounded-full w-5 h-5 bg-gradient-to-br from-violet-700 to-violet-500"
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
{Array.from({length: jsonData.attr.permanentSP.lost}, (_, index) => (
|
|
||||||
<div
|
|
||||||
key={`sp-lost-${index}`}
|
|
||||||
className="rounded-full w-5 h-5 bg-gradient-to-br from-gray-700 to-gray-500"
|
|
||||||
/>
|
|
||||||
))}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@@ -18,7 +18,6 @@ export interface Attributes {
|
|||||||
permanentAE: PermanentAttribute;
|
permanentAE: PermanentAttribute;
|
||||||
permanentKP: PermanentAttribute;
|
permanentKP: PermanentAttribute;
|
||||||
permanentLP: PermanentAttribute;
|
permanentLP: PermanentAttribute;
|
||||||
permanentSP: PermanentAttribute;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface PersonalDetails {
|
export interface PersonalDetails {
|
||||||
|
Reference in New Issue
Block a user