Skip to content

Commit

Permalink
Update import-export.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Zorn192 authored Oct 22, 2020
1 parent 457aa38 commit 1a9decf
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions modules/import-export.js
Original file line number Diff line number Diff line change
Expand Up @@ -363,20 +363,20 @@ function ImportExportTooltip(what, event) {
percentzone: (100 * (game.c2.Nom / (game.global.highestLevelCleared + 1))).toFixed(2) + '%',
color: 0
},
Electricity: {
number: 10,
percent: getIndividualSquaredReward('Electricity') + '%',
zone: game.c2.Electricity,
percentzone: (100 * (game.c2.Electricity / (game.global.highestLevelCleared + 1))).toFixed(2) + '%',
color: 0
},
Toxicity: {
number: 11,
number: 10,
percent: getIndividualSquaredReward('Toxicity') + '%',
zone: game.c2.Toxicity,
percentzone: (100 * (game.c2.Toxicity / (game.global.highestLevelCleared + 1))).toFixed(2) + '%',
color: 0
},
Electricity: {
number: 11,
percent: getIndividualSquaredReward('Electricity') + '%',
zone: game.c2.Electricity,
percentzone: (100 * (game.c2.Electricity / (game.global.highestLevelCleared + 1))).toFixed(2) + '%',
color: 0
},
Coordinate: {
number: 12,
percent: getIndividualSquaredReward('Coordinate') + '%',
Expand Down Expand Up @@ -632,15 +632,6 @@ function ImportExportTooltip(what, event) {
<font color=` + c2list.Nom.color + `>` + c2list.Nom.percentzone + `
</td>
</tr>
<tr>
<td>Electricity</td>
<td>` + c2list.Electricity.number + `</td>
<td>` + c2list.Electricity.percent + `</td>
<td>` + c2list.Electricity.zone + `</td>
<td bgcolor='black'>
<font color=` + c2list.Electricity.color + `>` + c2list.Electricity.percentzone + `
</td>
</tr>
<tr>
<td>Toxicity</td>
<td>` + c2list.Toxicity.number + `</td>
Expand All @@ -650,6 +641,15 @@ function ImportExportTooltip(what, event) {
<font color=` + c2list.Toxicity.color + `>` + c2list.Toxicity.percentzone + `
</td>
</tr>
<tr>
<td>Electricity</td>
<td>` + c2list.Electricity.number + `</td>
<td>` + c2list.Electricity.percent + `</td>
<td>` + c2list.Electricity.zone + `</td>
<td bgcolor='black'>
<font color=` + c2list.Electricity.color + `>` + c2list.Electricity.percentzone + `
</td>
</tr>
<tr>
<td>Coordinate</td>
<td>` + c2list.Coordinate.number + `</td>
Expand Down

0 comments on commit 1a9decf

Please sign in to comment.