New source found from dndbeyond.com

This commit is contained in:
2026-07-08 01:00:09 -07:00
parent 9a983a6d7b
commit dcefa0d2f2
2865 changed files with 222467 additions and 49053 deletions
@@ -122,7 +122,7 @@ export const ExtraRow: FC<Props> = ({
const total: number = totalHp + tempHp;
contentNode = (
<React.Fragment>
<>
<span className="ct-extra-row__hp-value ct-extra-row__hp-value--current">
{current}
</span>
@@ -130,7 +130,7 @@ export const ExtraRow: FC<Props> = ({
<span className="ct-extra-row__hp-value ct-extra-row__hp-value--total">
{total}
</span>
</React.Fragment>
</>
);
} else {
contentNode = (
@@ -179,7 +179,7 @@ export const ExtraRow: FC<Props> = ({
let contentNode: React.ReactNode = null;
if (data !== null) {
contentNode = (
<React.Fragment>
<>
<div className="ct-extra-row__speed-value">
<NumberDisplay
type="distanceInFt"
@@ -191,7 +191,7 @@ export const ExtraRow: FC<Props> = ({
{data.movementId !== Constants.MovementTypeEnum.WALK && (
<div className="ct-extra-row__speed-callout">{label}</div>
)}
</React.Fragment>
</>
);
} else {
contentNode = (
@@ -222,10 +222,10 @@ export const ExtraRow: FC<Props> = ({
}
return (
<React.Fragment>
<>
{armorClassText}
{armorClassInfo.showTooltip && renderAdditionalInfoTooltip()}
</React.Fragment>
</>
);
};