From 9dad47dc339dcbb1c8520bc7b5059a30ff3cc866 Mon Sep 17 00:00:00 2001 From: Frank Date: Fri, 23 Jan 2026 20:47:59 +0100 Subject: [PATCH] Todo: calculate poison tolerance based on character data --- ToDo.md | 1 + frontend/src/components/DatasheetView.vue | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ToDo.md b/ToDo.md index 421454c..c6daeae 100644 --- a/ToDo.md +++ b/ToDo.md @@ -38,6 +38,7 @@ * API endpunkte für Export/Import aus Commit 2dcb4e00faaf316b98eb28e83cc5137bf0d1385d * wouldn't it be a good idea to remove the GameSystem from all the records and define it in a kind of manifest. The values in the manifest could be applied to all records (where needed) during the import session. export_import.go * maintanance view for gsm_cc_class_category_points +* Todo: calculate poison tolerance based on character data (frontend/src/components/DatasheetView.vue) ## Refaktor diff --git a/frontend/src/components/DatasheetView.vue b/frontend/src/components/DatasheetView.vue index 630789b..95b7bdd 100644 --- a/frontend/src/components/DatasheetView.vue +++ b/frontend/src/components/DatasheetView.vue @@ -260,7 +260,7 @@ export default { }, getStat(path) { if (path === 'git') { - // Todo: calculate poison tolerance based on character data (frontend/src/components/DatasheetView.vue) + // Todo: calculate poison tolerance based on character data return '64!' } return path.split('.').reduce((obj, key) => obj?.[key], this.character) ?? '-'