diff options
author | Linnea Gräf <nea@nea.moe> | 2024-01-15 00:32:43 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-01-17 21:10:51 +0100 |
commit | ac151c8ebc4c5546795cdbf5b0c179183e2c71d1 (patch) | |
tree | 52141110008ba6809d0dde5bc4456fc37e6a665a /src/main/resources/assets/firmament | |
parent | c49b65835d37266508561e60782bda36275fb8ae (diff) | |
download | firmament-ac151c8ebc4c5546795cdbf5b0c179183e2c71d1.tar.gz firmament-ac151c8ebc4c5546795cdbf5b0c179183e2c71d1.tar.bz2 firmament-ac151c8ebc4c5546795cdbf5b0c179183e2c71d1.zip |
Add Pristine Profit Tracker
Diffstat (limited to 'src/main/resources/assets/firmament')
-rw-r--r-- | src/main/resources/assets/firmament/gui/pristine_profit.xml | 22 | ||||
-rw-r--r-- | src/main/resources/assets/firmament/lang/en_us.json | 2 |
2 files changed, 24 insertions, 0 deletions
diff --git a/src/main/resources/assets/firmament/gui/pristine_profit.xml b/src/main/resources/assets/firmament/gui/pristine_profit.xml new file mode 100644 index 0000000..2d69abb --- /dev/null +++ b/src/main/resources/assets/firmament/gui/pristine_profit.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8" ?> + +<!-- +SPDX-FileCopyrightText: 2023 Linnea Gräf <nea@nea.moe> + +SPDX-License-Identifier: GPL-3.0-or-later +--> + +<Root xmlns="http://notenoughupdates.org/moulconfig" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:firm="http://nea.moe/Firmament" + xsi:schemaLocation="http://notenoughupdates.org/moulconfig https://raw.githubusercontent.com/NotEnoughUpdates/MoulConfig/master/MoulConfig.xsd"> + <Column> + <Row> + <firm:Bar progress="@moneyCurrent" total="@moneyMax" fillColor="#bbbb00" emptyColor="#909000"/> + <Text text="@moneyText"/> + </Row> + <Row> + <firm:Bar progress="@collectionCurrent" total="@collectionMax" fillColor="#33ff33" emptyColor="#00a000"/> + <Text text="@collectionText"/> + </Row> + </Column> +</Root> diff --git a/src/main/resources/assets/firmament/lang/en_us.json b/src/main/resources/assets/firmament/lang/en_us.json index 8ae1300..d6454ec 100644 --- a/src/main/resources/assets/firmament/lang/en_us.json +++ b/src/main/resources/assets/firmament/lang/en_us.json @@ -5,6 +5,8 @@ "firmament.command.toggle.no-property-found": "Could not find property %s", "firmament.command.toggle.not-a-toggle": "Property %s is not a toggle", "firmament.command.toggle.toggled": "Toggled %s / %s %s", + "firmament.pristine-profit.collection": "Collection: %s/h", + "firmament.pristine-profit.money": "Money: %s/h", "firmament.toggle.true": "On", "firmament.toggle.false": "Off", "firmament.config.developer": "Developer Settings", |