Skip to content

Commit

Permalink
chore: omit world-specific data from currency model
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahJGersh committed Aug 21, 2024
1 parent ae20c1d commit 97c4e4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 70 deletions.
16 changes: 1 addition & 15 deletions src/lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -247,21 +247,7 @@
"Spirit": "Spirit",
"Vital": "Vital"
},
"Currencies": {
"Spheres": {
"Name": "Spheres",
"Denominations": {
"Diamond": "Diamond",
"TierTwoGems": "Garnet/Heliodor/Topaz",
"TierThreeGems": "Ruby/Smokestone/Zircon",
"TierFourGems": "Amethyst/Sapphire",
"Emerald": "Emerald",
"Chips": "Chips",
"Marks": "Marks",
"Broams": "Broams"
}
}
}
"Currencies": {}
},
"DICE": {
"RollMode": "Roll Mode",
Expand Down
56 changes: 1 addition & 55 deletions src/system/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ import {
AttributeGroup,
Resource,
Skill,
Currency,
CurrencyDenomination,
WeaponType,
WeaponId,
ExpertiseType,
Expand Down Expand Up @@ -311,59 +309,7 @@ const COSMERE: CosmereRPGConfig = {
},
},

currencies: {
[Currency.Spheres]: {
label: 'COSMERE.Currencies.Spheres.Name',
denominations: {
primary: [
{
id: CurrencyDenomination.SphereDiamond,
label: 'COSMERE.Currencies.Spheres.Denominations.Diamond',
conversionRate: 1,
base: true,
},
{
id: CurrencyDenomination.SphereTierTwoGems,
label: 'COSMERE.Currencies.Spheres.Denominations.TierTwoGems',
conversionRate: 5,
},
{
id: CurrencyDenomination.SphereTierThreeGems,
label: 'COSMERE.Currencies.Spheres.Denominations.TierThreeGems',
conversionRate: 10,
},
{
id: CurrencyDenomination.SphereTierFourGems,
label: 'COSMERE.Currencies.Spheres.Denominations.TierFourGems',
conversionRate: 25,
},
{
id: CurrencyDenomination.SphereEmerald,
label: 'COSMERE.Currencies.Spheres.Denominations.Emerald',
conversionRate: 50,
},
],
secondary: [
{
id: CurrencyDenomination.SphereChips,
label: 'COSMERE.Currencies.Spheres.Denominations.Chips',
conversionRate: 0.2,
},
{
id: CurrencyDenomination.SphereMarks,
label: 'COSMERE.Currencies.Spheres.Denominations.Marks',
conversionRate: 1,
base: true,
},
{
id: CurrencyDenomination.SphereBroams,
label: 'COSMERE.Currencies.Spheres.Denominations.Broams',
conversionRate: 4,
},
],
},
},
},
currencies: {},

weaponTypes: {
[WeaponType.Light]: {
Expand Down

0 comments on commit 97c4e4f

Please sign in to comment.