Skip to content

Commit bb53f37

Browse files
committed
2024_10_27_india_update
1 parent 6a462cd commit bb53f37

40 files changed

+1459
-1315
lines changed

db/effects.js

+35-3
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ export async function convertEffects(effects, civ, isAdvisor) {
7979
}*/
8080
continue
8181
}
82-
82+
//console.log(e.action)
8383
if (type === "WorkRate") {
84-
/*console.log(e.action)*/
84+
//console.log(e.action)
8585
switch (e.action) {
8686
case "Gather":
8787
case "AutoGather":
@@ -129,6 +129,8 @@ export async function convertEffects(effects, civ, isAdvisor) {
129129
break
130130
case "AreaHeal":
131131
continue
132+
case "ShrineGather":
133+
continue
132134
}
133135
} else if (type === "Damage") {
134136
switch (e.action) {
@@ -156,7 +158,10 @@ export async function convertEffects(effects, civ, isAdvisor) {
156158
type += e.resource.charAt(0).toUpperCase() + e.resource.slice(1)
157159
} else if (type === "Cost") {
158160
type += e.resource
159-
} else if (type === "DamageBonus" || type === "Yield") {
161+
} /*else if (type === "DamageBonus" || type === "Yield") {
162+
type += e.unittype
163+
} */
164+
else if (type === "DamageBonus" || type === "Yield") {
160165
type += e.unittype
161166
} else if (type === "Armor") {
162167
type += e.damagetype
@@ -198,6 +203,8 @@ export async function convertEffects(effects, civ, isAdvisor) {
198203
type = "MaximumRangeConvert"
199204
} else if (type === "MaximumRange" && e.action == "Convert2") {
200205
continue
206+
} else if (type === "GathererLimit") {
207+
type = "GathererLimit"
201208
} else if (type === "DamageArea") {
202209
type = e.action + "DamageArea"
203210
} else if (
@@ -1081,6 +1088,26 @@ const templates = {
10811088
icon: "DamageBonusHuntable",
10821089
sort: 36
10831090
},
1091+
DamageBonusDeerRedMeleeAttack: {
1092+
name: "Bonus vs. Deer (Red)",
1093+
icon: "DamageBonusHuntable",
1094+
sort: 36
1095+
},
1096+
DamageBonusGazelleMeleeAttack: {
1097+
name: "Bonus vs. Gazelle",
1098+
icon: "DamageBonusHuntable",
1099+
sort: 36
1100+
},
1101+
DamageBonusIn_SacredCowMeleeAttack: {
1102+
name: "Bonus vs. Sacred Cow",
1103+
icon: "DamageBonusHuntable",
1104+
sort: 36
1105+
},
1106+
DamageBonusIn_SacredCowRangedAttack: {
1107+
name: "Bonus vs. Sacred Cow",
1108+
icon: "DamageBonusHuntable",
1109+
sort: 60
1110+
},
10841111
AttackSpeed: { name: "Attack Rate", icon: "DamageOverTime", sort: 0 },
10851112
AttackSpeedDamageBuilding: {
10861113
name: "Attack Rate",
@@ -1440,6 +1467,11 @@ const templates = {
14401467
name: "Damara Rite Train Time Buff",
14411468
icon: "BuildPoints",
14421469
sort: 208
1470+
},
1471+
GathererLimit: {
1472+
name: "Gatherer Limit",
1473+
icon: "PopulationCount",
1474+
sort: 209
14431475
}
14441476
}
14451477

db/units/build.js

+9-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export async function buildUnits() {
3434
const power = powerNuggets[i]
3535
if (power.type === "TempUnit") {
3636
const consUnits = await convertConsUnit(power)
37-
const civs = ["greek","egyptian","celtic","persian","babylonian","roman","norse"]
37+
const civs = ["greek","egyptian","celtic","persian","babylonian","roman","norse","indian"]
3838

3939
for (let i = 0; i < civs.length; i++) {
4040
if (!resultsCons[civs[i]]) {
@@ -64,7 +64,7 @@ export async function buildUnits() {
6464

6565
const advUnits = await convertAdvisorUnit(a)
6666

67-
const civs = ["greek","egyptian","celtic","persian","babylonian","roman","norse"]
67+
const civs = ["greek","egyptian","celtic","persian","babylonian","roman","norse","indian"]
6868

6969
if (civ === "undefined") {
7070
for (let i = 0; i < civs.length; i++) {
@@ -343,6 +343,13 @@ async function convertUnit(unit, tech, equipment) {
343343
stats[e.type] = e.amount
344344
}
345345
})
346+
if (unit.name === "In_Arc_BladeChariot") {
347+
delete stats["AttackSpeedDamageRanged"]
348+
delete stats["DamageRangedAttack"]
349+
}
350+
if (unit.name === "In_Civ_Villager" || unit.name === "In_Civ_GathererElephant") {
351+
delete stats["GatherHerdable"]
352+
}
346353

347354
const u = {
348355
id: unit.name,

db/units/convert-stats.js

+21-4
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,9 @@ export async function convertUnitStats(unit) {
128128
stats["CarryCapacity" + resource] = cap.quantity
129129
}
130130
}
131+
if (unit.GathererLimit) {
132+
stats["GathererLimit"] = unit.GathererLimit
133+
}
131134

132135
if (unit.Tactics) {
133136
const tactics = await getTactics(unit.Tactics)
@@ -241,7 +244,13 @@ export function parseAction(action, stats, inactiveActions) {
241244
"DamageBonusAbstractInfantryPoisonAttack",
242245
"DamageBonusShipBurningAttack",
243246
"DamageBonusAbstractArtilleryBuildingAttack",
244-
"DamageBonusBuildingBuildingAttack"
247+
"DamageBonusBuildingBuildingAttack"/*,
248+
"DamageBonusDeerHunting",
249+
"DamageBonusAntelopeHunting",
250+
"DamageBonusDeerAlpineHunting",
251+
"DamageBonusDeerRedHunting",
252+
"DamageBonusCamelHunting",
253+
"DamageBonusGazelleHunting"*/
245254
]
246255

247256
const name = action.Name
@@ -305,9 +314,17 @@ export function parseAction(action, stats, inactiveActions) {
305314
for (let keyDmgBonus in action.DamageBonus) {
306315
const bonus = action.DamageBonus[keyDmgBonus]
307316
if (ignoredEffects.indexOf("DamageBonus" + bonus.type + name) === -1) {
308-
stats["DamageBonus" + bonus.type + name] = bonus.amount
309-
if (action.Active === 0) {
310-
inactiveActions.push("DamageBonus" + bonus.type + name)
317+
if(name === "Hunting") {
318+
stats["DamageBonus" + bonus.type + "MeleeAttack"] = bonus.amount
319+
if (action.Active === 0) {
320+
inactiveActions.push("DamageBonus" + bonus.type + "MeleeAttack")
321+
}
322+
}
323+
else {
324+
stats["DamageBonus" + bonus.type + name] = bonus.amount
325+
if (action.Active === 0) {
326+
inactiveActions.push("DamageBonus" + bonus.type + name)
327+
}
311328
}
312329
}
313330
}

db/upgrades/build.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ async function convertEquipmentToUpgrades(equipment) {
6868
const civ = equipment.civ.toLowerCase()
6969
for (let i = 0; i < equipment.reward.rank.length; i++) {
7070
const reward = equipment.reward.rank[i]
71+
//console.log(reward.tech)
7172
const tech = findByAttribute(techtree, "name", reward.tech)
7273
if (tech && !techIgnored(tech)) {
7374
const upgrade = await convertUpgrade(tech, civ)
@@ -183,7 +184,8 @@ function techIgnored(tech) {
183184
"PersiaTechAdvisorBahram_E",
184185
"Ro_Ct_UnitCenturion1",
185186
"Ro_Ct_UnitDecurion1",
186-
"Ro_Ct_UnitEngineer1"
187+
"Ro_Ct_UnitEngineer1",
188+
"In_Ct_UnitBladeChariot1"
187189
]
188190
return ignored.includes(tech.name)
189191
}

public/assets/sprites/advisors.webp

13.4 KB
Binary file not shown.

public/assets/sprites/gear.webp

15.8 KB
Binary file not shown.

public/assets/sprites/icons.webp

758 Bytes
Binary file not shown.

public/assets/sprites/milestones.webp

13.3 KB
Binary file not shown.

public/assets/sprites/units.webp

45.4 KB
Binary file not shown.

public/assets/sprites/upgrades.webp

21.3 KB
Binary file not shown.

public/sitemap.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><url><loc>https://unitstats.projectceleste.com</loc><lastmod>2024-09-03T12:46:47.162Z</lastmod><changefreq>weekly</changefreq><priority>1.0</priority></url></urlset>
1+
<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><url><loc>https://unitstats.projectceleste.com</loc><lastmod>2024-10-27T14:58:26.986Z</lastmod><changefreq>weekly</changefreq><priority>1.0</priority></url></urlset>

server/gear.json

+1-1
Large diffs are not rendered by default.

server/units.json

+1-1
Large diffs are not rendered by default.

src/assets/icons/indian.png

1.29 MB
Loading

src/data/advisors.json

+1-1
Large diffs are not rendered by default.

src/data/civs.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55
"persian",
66
"roman",
77
"babylonian",
8-
"norse"
8+
"norse",
9+
"indian"
910
]

src/data/effects.json

+1-1
Large diffs are not rendered by default.

src/data/gear.json

+1-1
Large diffs are not rendered by default.

src/data/milestones.json

+1-1
Large diffs are not rendered by default.

src/data/units.json

+1-1
Large diffs are not rendered by default.

src/data/upgrades.json

+1-1
Large diffs are not rendered by default.

src/gamedb_data/source_advisors.json

+1-1
Large diffs are not rendered by default.

src/gamedb_data/source_econstringsEnglish.json

+1-1
Large diffs are not rendered by default.

src/gamedb_data/source_equipments.json

+1-1
Large diffs are not rendered by default.

src/gamedb_data/source_equipmentstringsEnglish.json

+1-1
Large diffs are not rendered by default.

src/gamedb_data/source_milestones_rewards.json

+1-1
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[{"civid":"Greek","level":5,"rewardids":{"id":["C01_L05_A","C01_L05_B"]}},{"civid":"Greek","level":10,"rewardids":{"id":["C01_L10_A","C01_L10_B"]}},{"civid":"Greek","level":20,"rewardids":{"id":["C01_L20_A","C01_L20_B"]}},{"civid":"Greek","level":30,"rewardids":{"id":["C01_L30_A","C01_L30_B"]}},{"civid":"Greek","level":40,"rewardids":{"id":["C01_L40_A","C01_L40_B"]}},{"civid":"Egyptian","level":5,"rewardids":{"id":["C02_L05_A","C02_L05_B"]}},{"civid":"Egyptian","level":10,"rewardids":{"id":["C02_L10_A","C02_L10_B"]}},{"civid":"Egyptian","level":20,"rewardids":{"id":["C02_L20_A","C02_L20_B"]}},{"civid":"Egyptian","level":30,"rewardids":{"id":["C02_L30_A","C02_L30_B"]}},{"civid":"Egyptian","level":40,"rewardids":{"id":["C02_L40_A","C02_L40_B"]}},{"civid":"Celtic","level":5,"rewardids":{"id":["C03_L05_A","C03_L05_B"]}},{"civid":"Celtic","level":10,"rewardids":{"id":["C03_L10_A","C03_L10_B"]}},{"civid":"Celtic","level":20,"rewardids":{"id":["C03_L20_A","C03_L20_B"]}},{"civid":"Celtic","level":30,"rewardids":{"id":["C03_L30_A","C03_L30_B"]}},{"civid":"Celtic","level":40,"rewardids":{"id":["C03_L40_A","C03_L40_B"]}},{"civid":"Persian","level":5,"rewardids":{"id":["C04_L05_A","C04_L05_B"]}},{"civid":"Persian","level":10,"rewardids":{"id":["C04_L10_A","C04_L10_B"]}},{"civid":"Persian","level":20,"rewardids":{"id":["C04_L20_A","C04_L20_B"]}},{"civid":"Persian","level":30,"rewardids":{"id":["C04_L30_A","C04_L30_B"]}},{"civid":"Persian","level":40,"rewardids":{"id":["C04_L40_A","C04_L40_B"]}},{"civid":"Roman","level":5,"rewardids":{"id":["C05_L05_A","C05_L05_B"]}},{"civid":"Roman","level":10,"rewardids":{"id":["C05_L10_A","C05_L10_B"]}},{"civid":"Roman","level":20,"rewardids":{"id":["C05_L20_A","C05_L20_B"]}},{"civid":"Roman","level":30,"rewardids":{"id":["C05_L30_A","C05_L30_B"]}},{"civid":"Roman","level":40,"rewardids":{"id":["C05_L40_A","C05_L40_B"]}},{"civid":"Babylonian","level":5,"rewardids":{"id":["C06_L05_A","C06_L05_B"]}},{"civid":"Babylonian","level":10,"rewardids":{"id":["C06_L10_A","C06_L10_B"]}},{"civid":"Babylonian","level":20,"rewardids":{"id":["C06_L20_A","C06_L20_B"]}},{"civid":"Babylonian","level":30,"rewardids":{"id":["C06_L30_A","C06_L30_B"]}},{"civid":"Babylonian","level":40,"rewardids":{"id":["C06_L40_A","C06_L40_B"]}},{"civid":"Norse","level":5,"rewardids":{"id":["C07_L05_A","C07_L05_B"]}},{"civid":"Norse","level":10,"rewardids":{"id":["C07_L10_A","C07_L10_B"]}},{"civid":"Norse","level":20,"rewardids":{"id":["C07_L20_A","C07_L20_B"]}},{"civid":"Norse","level":30,"rewardids":{"id":["C07_L30_A","C07_L30_B"]}},{"civid":"Norse","level":40,"rewardids":{"id":["C07_L40_A","C07_L40_B"]}}]
1+
[{"civid":"Greek","level":5,"rewardids":{"id":["C01_L05_A","C01_L05_B"]}},{"civid":"Greek","level":10,"rewardids":{"id":["C01_L10_A","C01_L10_B"]}},{"civid":"Greek","level":20,"rewardids":{"id":["C01_L20_A","C01_L20_B"]}},{"civid":"Greek","level":30,"rewardids":{"id":["C01_L30_A","C01_L30_B"]}},{"civid":"Greek","level":40,"rewardids":{"id":["C01_L40_A","C01_L40_B"]}},{"civid":"Egyptian","level":5,"rewardids":{"id":["C02_L05_A","C02_L05_B"]}},{"civid":"Egyptian","level":10,"rewardids":{"id":["C02_L10_A","C02_L10_B"]}},{"civid":"Egyptian","level":20,"rewardids":{"id":["C02_L20_A","C02_L20_B"]}},{"civid":"Egyptian","level":30,"rewardids":{"id":["C02_L30_A","C02_L30_B"]}},{"civid":"Egyptian","level":40,"rewardids":{"id":["C02_L40_A","C02_L40_B"]}},{"civid":"Celtic","level":5,"rewardids":{"id":["C03_L05_A","C03_L05_B"]}},{"civid":"Celtic","level":10,"rewardids":{"id":["C03_L10_A","C03_L10_B"]}},{"civid":"Celtic","level":20,"rewardids":{"id":["C03_L20_A","C03_L20_B"]}},{"civid":"Celtic","level":30,"rewardids":{"id":["C03_L30_A","C03_L30_B"]}},{"civid":"Celtic","level":40,"rewardids":{"id":["C03_L40_A","C03_L40_B"]}},{"civid":"Persian","level":5,"rewardids":{"id":["C04_L05_A","C04_L05_B"]}},{"civid":"Persian","level":10,"rewardids":{"id":["C04_L10_A","C04_L10_B"]}},{"civid":"Persian","level":20,"rewardids":{"id":["C04_L20_A","C04_L20_B"]}},{"civid":"Persian","level":30,"rewardids":{"id":["C04_L30_A","C04_L30_B"]}},{"civid":"Persian","level":40,"rewardids":{"id":["C04_L40_A","C04_L40_B"]}},{"civid":"Roman","level":5,"rewardids":{"id":["C05_L05_A","C05_L05_B"]}},{"civid":"Roman","level":10,"rewardids":{"id":["C05_L10_A","C05_L10_B"]}},{"civid":"Roman","level":20,"rewardids":{"id":["C05_L20_A","C05_L20_B"]}},{"civid":"Roman","level":30,"rewardids":{"id":["C05_L30_A","C05_L30_B"]}},{"civid":"Roman","level":40,"rewardids":{"id":["C05_L40_A","C05_L40_B"]}},{"civid":"Babylonian","level":5,"rewardids":{"id":["C06_L05_A","C06_L05_B"]}},{"civid":"Babylonian","level":10,"rewardids":{"id":["C06_L10_A","C06_L10_B"]}},{"civid":"Babylonian","level":20,"rewardids":{"id":["C06_L20_A","C06_L20_B"]}},{"civid":"Babylonian","level":30,"rewardids":{"id":["C06_L30_A","C06_L30_B"]}},{"civid":"Babylonian","level":40,"rewardids":{"id":["C06_L40_A","C06_L40_B"]}},{"civid":"Norse","level":5,"rewardids":{"id":["C07_L05_A","C07_L05_B"]}},{"civid":"Norse","level":10,"rewardids":{"id":["C07_L10_A","C07_L10_B"]}},{"civid":"Norse","level":20,"rewardids":{"id":["C07_L20_A","C07_L20_B"]}},{"civid":"Norse","level":30,"rewardids":{"id":["C07_L30_A","C07_L30_B"]}},{"civid":"Norse","level":40,"rewardids":{"id":["C07_L40_A","C07_L40_B"]}},{"civid":"Indian","level":5,"rewardids":{"id":["C08_L05_A","C08_L05_B"]}},{"civid":"Indian","level":10,"rewardids":{"id":["C08_L10_A","C08_L10_B"]}},{"civid":"Indian","level":20,"rewardids":{"id":["C08_L20_A","C08_L20_B"]}},{"civid":"Indian","level":30,"rewardids":{"id":["C08_L30_A","C08_L30_B"]}},{"civid":"Indian","level":40,"rewardids":{"id":["C08_L40_A","C08_L40_B"]}}]

src/gamedb_data/source_nuggets.json

+1-1
Large diffs are not rendered by default.

src/gamedb_data/source_stringtablexEnglish.json

+1-1
Large diffs are not rendered by default.

src/gamedb_data/source_tactics.json

+1-1
Large diffs are not rendered by default.

src/gamedb_data/source_techtree.json

+1-1
Large diffs are not rendered by default.

src/gamedb_data/source_traits.json

+1-1
Large diffs are not rendered by default.

src/gamedb_data/source_units.json

+1-1
Large diffs are not rendered by default.

src/gamedb_data/source_vendors.json

+1-1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)