Merge remote-tracking branch 'origin/master'
This commit is contained in:
@@ -1,12 +1,15 @@
|
|||||||
package mindustry.entities.abilities;
|
package mindustry.entities.abilities;
|
||||||
|
|
||||||
|
import arc.*;
|
||||||
import arc.graphics.*;
|
import arc.graphics.*;
|
||||||
|
import arc.graphics.g2d.*;
|
||||||
import arc.math.*;
|
import arc.math.*;
|
||||||
import arc.util.*;
|
import arc.util.*;
|
||||||
import arc.audio.*;
|
import arc.audio.*;
|
||||||
import mindustry.content.*;
|
import mindustry.content.*;
|
||||||
import mindustry.entities.*;
|
import mindustry.entities.*;
|
||||||
import mindustry.gen.*;
|
import mindustry.gen.*;
|
||||||
|
import mindustry.graphics.*;
|
||||||
|
|
||||||
public class MoveLightningAbility extends Ability{
|
public class MoveLightningAbility extends Ability{
|
||||||
//Lightning damage
|
//Lightning damage
|
||||||
@@ -19,16 +22,32 @@ public class MoveLightningAbility extends Ability{
|
|||||||
public float minSpeed = 0.8f, maxSpeed = 1.2f;
|
public float minSpeed = 0.8f, maxSpeed = 1.2f;
|
||||||
//Lightning color
|
//Lightning color
|
||||||
public Color color = Color.valueOf("a9d8ff");
|
public Color color = Color.valueOf("a9d8ff");
|
||||||
|
//Shifts where the lightning spawns along the Y axis
|
||||||
|
public float offset = 0f;
|
||||||
|
//Jittering heat sprite like the shield on v5 Javelin
|
||||||
|
public String heatRegion = "error";
|
||||||
|
|
||||||
public Effect shootEffect = Fx.sparkShoot;
|
public Effect shootEffect = Fx.sparkShoot;
|
||||||
public Sound shootSound = Sounds.spark;
|
public Sound shootSound = Sounds.spark;
|
||||||
|
|
||||||
MoveLightningAbility(){}
|
MoveLightningAbility(){}
|
||||||
|
|
||||||
public MoveLightningAbility(float damage, int length, float chance, float minSpeed, float maxSpeed, Color color){
|
public MoveLightningAbility(float damage, int length, float chance, float offset, float minSpeed, float maxSpeed, Color color, String heatRegion){
|
||||||
this.damage = damage;
|
this.damage = damage;
|
||||||
this.length = length;
|
this.length = length;
|
||||||
this.chance = chance;
|
this.chance = chance;
|
||||||
|
this.offset = offset;
|
||||||
|
this.minSpeed = minSpeed;
|
||||||
|
this.maxSpeed = maxSpeed;
|
||||||
|
this.color = color;
|
||||||
|
this.heatRegion = heatRegion;
|
||||||
|
}
|
||||||
|
|
||||||
|
public MoveLightningAbility(float damage, int length, float chance, float offset, float minSpeed, float maxSpeed, Color color){
|
||||||
|
this.damage = damage;
|
||||||
|
this.length = length;
|
||||||
|
this.chance = chance;
|
||||||
|
this.offset = offset;
|
||||||
this.minSpeed = minSpeed;
|
this.minSpeed = minSpeed;
|
||||||
this.maxSpeed = maxSpeed;
|
this.maxSpeed = maxSpeed;
|
||||||
this.color = color;
|
this.color = color;
|
||||||
@@ -38,9 +57,23 @@ public class MoveLightningAbility extends Ability{
|
|||||||
public void update(Unit unit){
|
public void update(Unit unit){
|
||||||
float scl = Mathf.clamp((unit.vel().len() - minSpeed) / (maxSpeed - minSpeed));
|
float scl = Mathf.clamp((unit.vel().len() - minSpeed) / (maxSpeed - minSpeed));
|
||||||
if(Mathf.chance(Time.delta * chance * scl)){
|
if(Mathf.chance(Time.delta * chance * scl)){
|
||||||
shootEffect.at(unit.x, unit.y, unit.rotation, color);
|
float x = unit.x + Angles.trnsx(unit.rotation, offset, 0), y = unit.y + Angles.trnsy(unit.rotation, offset, 0);
|
||||||
Lightning.create(unit.team, color, damage, unit.x + unit.vel.x, unit.y + unit.vel.y, unit.rotation, length);
|
shootEffect.at(x, y, unit.rotation, color);
|
||||||
|
Lightning.create(unit.team, color, damage, x + unit.vel.x, y + unit.vel.y, unit.rotation, length);
|
||||||
shootSound.at(unit);
|
shootSound.at(unit);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void draw(Unit unit){
|
||||||
|
float scl = Mathf.clamp((unit.vel().len() - minSpeed) / (maxSpeed - minSpeed));
|
||||||
|
TextureRegion region = Core.atlas.find(heatRegion);
|
||||||
|
if(Core.atlas.isFound(region) && scl > 0.00001f){
|
||||||
|
Draw.color(color);
|
||||||
|
Draw.alpha(scl / 2f);
|
||||||
|
Draw.blend(Blending.additive);
|
||||||
|
Draw.rect(region, unit.x + Mathf.range(scl / 2f), unit.y + Mathf.range(scl / 2f), unit.rotation - 90);
|
||||||
|
Draw.blend();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,14 +1,52 @@
|
|||||||
Create elaborate supply chains of conveyor belts to feed ammo into your turrets, produce materials to use for building, and defend your structures from waves of enemies. Play with your friends in cross-platform multiplayer co-op games, or challenge them in team-based PvP matches.
|
Create elaborate supply chains of conveyor belts to feed ammo into your turrets, produce materials to use for building, and defend your structures from waves of enemies. Play with your friends in cross-platform multiplayer co-op games, or challenge them in team-based PvP matches.
|
||||||
|
|
||||||
Features include:
|
<h2>Gameplay Features</h2>
|
||||||
- 24 built-in maps
|
|
||||||
- A campaign, complete with a tech tree and unlockable areas
|
- Use production blocks to create a wide variety of advanced materials
|
||||||
- 4 powerful wave bosses to defeat
|
- Defend your structures from waves of enemies
|
||||||
- Energy, liquid and item transportation systems
|
- Play with your friends in cross-platform multiplayer co-op games, or challenge them in team-based PvP matches
|
||||||
- 19 different types of drones, mechs and ships
|
- Distribute liquids and fight constant challenges, like outbreaks of fire or enemy flier raids
|
||||||
- 120+ technology blocks to master
|
- Get the most out of your production by supplying optional coolant and lubricant
|
||||||
- 75+ different environmental blocks
|
- Produce a wide variety of units for automatic management of your base or assault on enemy bases
|
||||||
- Cross-platform multiplayer via local networks or dedicated servers
|
|
||||||
- Custom game rules: Change block costs, enemy stats, starting items, wave timing and more
|
|
||||||
- A powerful editor, with tools to randomly generate ores, terrain, decoration and apply symmetry to maps
|
<h2>Campaign</h2>
|
||||||
- Customizable map wave layouts
|
|
||||||
|
- Conquer the planet Serpulo as you advance through 250+ procedurally generated sectors and 16 hand-made maps
|
||||||
|
- Capture territory and set up factories to produce resources while you play other sectors
|
||||||
|
- Defend your sectors from periodic invasions
|
||||||
|
- Coordinate resource distribution between sectors via launch pads
|
||||||
|
- Research new blocks to fuel progress
|
||||||
|
- Invite your friends to complete missions together
|
||||||
|
- 130+ technology blocks to master
|
||||||
|
- 33 different types of drones, mechs and ships
|
||||||
|
|
||||||
|
|
||||||
|
<h2>Gamemodes</h2>
|
||||||
|
|
||||||
|
- <b>Survival</b>: Build turrets to defend from enemies in tower-defense based gameplay. Survive as long as possible, optionally launching your core to use your collected resources for research. Prepare your base for intermittent attacks from airborne bosses.
|
||||||
|
- <b>Attack</b>: Build factories for units to destroy the enemy cores, while simultaneously defending your base from waves of enemy units. Create a variety of different types of support and offensive unit to assist you in your goals. Optionally enable an AI that builds defensive structures to an extra challenge.
|
||||||
|
- <b>PvP</b>: Compete with other players on up to 4 different teams to destroy each other's cores. Create units, or attack other bases directly with your mechs.
|
||||||
|
- <b>Sandbox</b>: Play around with infinite resources and no enemy threat. Use sandbox-specific item and liquid source blocks to test out designs, and spawn in enemies on request.
|
||||||
|
|
||||||
|
|
||||||
|
<h2>Custom Games & Cross-Platform Multiplayer</h2>
|
||||||
|
|
||||||
|
- 16 built in maps for custom games, in addition to campaign
|
||||||
|
- Play co-op, PvP or sandbox
|
||||||
|
- Join a public dedicated server, or invite friends to your own private session
|
||||||
|
- Customizable game rules: Change block costs, enemy stats, starting items, wave timing and more
|
||||||
|
- Mix & match gamemodes: Combine PvP and PvE gamemodes together
|
||||||
|
|
||||||
|
|
||||||
|
<h2>Custom Map Editor</h2>
|
||||||
|
|
||||||
|
- Paint terrain with an editor UI
|
||||||
|
- Edit and preview structures in-game
|
||||||
|
- Configurable tool modes: Change how each tool functions
|
||||||
|
- Powerful map generation system, with many different types of filters for procedural manipulation of terrain
|
||||||
|
- Apply noise, distortion, smoothing, erosion, symmetry, ore generation and random terrain to your maps
|
||||||
|
- Randomize and configure ore generation, as well as placement of river and resource tiles
|
||||||
|
- Configure enemy wave layouts
|
||||||
|
- Customize base map rules
|
||||||
|
- Use 80+ different environmental blocks
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
[*] Coordinate resource distribution between sectors via launch pads
|
[*] Coordinate resource distribution between sectors via launch pads
|
||||||
[*] Research new blocks to fuel progress
|
[*] Research new blocks to fuel progress
|
||||||
[*] Invite your friends to complete missions together
|
[*] Invite your friends to complete missions together
|
||||||
[*] 120+ technology blocks to master
|
[*] 130+ technology blocks to master
|
||||||
[*] 33 different types of drones, mechs and ships
|
[*] 33 different types of drones, mechs and ships
|
||||||
[*] 50+ achievements to complete
|
[*] 50+ achievements to complete
|
||||||
[/list]
|
[/list]
|
||||||
@@ -42,7 +42,7 @@
|
|||||||
[h2]Custom Games & Cross-Platform Multiplayer[/h2]
|
[h2]Custom Games & Cross-Platform Multiplayer[/h2]
|
||||||
|
|
||||||
[list]
|
[list]
|
||||||
[*] 16 built in maps for custom games, in addition to campaign
|
[*] 18 built in maps for custom games, in addition to campaign
|
||||||
[*] Play co-op, PvP or sandbox
|
[*] Play co-op, PvP or sandbox
|
||||||
[*] Join a public dedicated server, or invite friends to your own private session
|
[*] Join a public dedicated server, or invite friends to your own private session
|
||||||
[*] Customizable game rules: Change block costs, enemy stats, starting items, wave timing and more
|
[*] Customizable game rules: Change block costs, enemy stats, starting items, wave timing and more
|
||||||
|
|||||||
@@ -3,14 +3,10 @@
|
|||||||
"Language" "italian"
|
"Language" "italian"
|
||||||
"Tokens"
|
"Tokens"
|
||||||
{
|
{
|
||||||
"NEW_ACHIEVEMENT_20_0_NAME" "Utente abilitato"
|
|
||||||
"NEW_ACHIEVEMENT_20_0_DESC" "Completa il tutorial."
|
|
||||||
"NEW_ACHIEVEMENT_20_1_NAME" "Attaccabrighe"
|
"NEW_ACHIEVEMENT_20_1_NAME" "Attaccabrighe"
|
||||||
"NEW_ACHIEVEMENT_20_1_DESC" "Distruggi 1000 unità nemiche."
|
"NEW_ACHIEVEMENT_20_1_DESC" "Distruggi 1000 unità nemiche."
|
||||||
"NEW_ACHIEVEMENT_20_2_NAME" "Epurazione"
|
"NEW_ACHIEVEMENT_20_2_NAME" "Epurazione"
|
||||||
"NEW_ACHIEVEMENT_20_2_DESC" "Distruggi 100,000 unità nemiche."
|
"NEW_ACHIEVEMENT_20_2_DESC" "Distruggi 100,000 unità nemiche."
|
||||||
"NEW_ACHIEVEMENT_20_3_NAME" "Trasporto Atmosferico"
|
|
||||||
"NEW_ACHIEVEMENT_20_3_DESC" "Lancia 10,000 oggetti."
|
|
||||||
"NEW_ACHIEVEMENT_20_5_NAME" "Spedizioni senza fine"
|
"NEW_ACHIEVEMENT_20_5_NAME" "Spedizioni senza fine"
|
||||||
"NEW_ACHIEVEMENT_20_5_DESC" "Lancia 1,000,000 di oggetti."
|
"NEW_ACHIEVEMENT_20_5_DESC" "Lancia 1,000,000 di oggetti."
|
||||||
"NEW_ACHIEVEMENT_20_6_NAME" "Conquistatore"
|
"NEW_ACHIEVEMENT_20_6_NAME" "Conquistatore"
|
||||||
@@ -20,19 +16,15 @@
|
|||||||
"NEW_ACHIEVEMENT_20_8_NAME" "Blitz"
|
"NEW_ACHIEVEMENT_20_8_NAME" "Blitz"
|
||||||
"NEW_ACHIEVEMENT_20_8_DESC" "Distruggi il nucleo nemico in una zona d'attacco in 5 ondate o meno."
|
"NEW_ACHIEVEMENT_20_8_DESC" "Distruggi il nucleo nemico in una zona d'attacco in 5 ondate o meno."
|
||||||
"NEW_ACHIEVEMENT_20_9_NAME" "Pioggia di Nuclei"
|
"NEW_ACHIEVEMENT_20_9_NAME" "Pioggia di Nuclei"
|
||||||
"NEW_ACHIEVEMENT_20_9_DESC" "Lancia il tuo nucleo in una zona 30 volte"
|
"NEW_ACHIEVEMENT_20_9_DESC" "Lancia il tuo nucleo 30 volte"
|
||||||
"NEW_ACHIEVEMENT_20_10_NAME" "Tenace"
|
"NEW_ACHIEVEMENT_20_10_NAME" "Tenace"
|
||||||
"NEW_ACHIEVEMENT_20_10_DESC" "Sopravvivi a 100 ondate."
|
"NEW_ACHIEVEMENT_20_10_DESC" "Sopravvivi a 100 ondate."
|
||||||
"NEW_ACHIEVEMENT_20_11_NAME" "Imbattuto"
|
|
||||||
"NEW_ACHIEVEMENT_20_11_DESC" "Sopravvivi a 500 ondate."
|
|
||||||
"NEW_ACHIEVEMENT_20_12_NAME" "Ricercatore"
|
"NEW_ACHIEVEMENT_20_12_NAME" "Ricercatore"
|
||||||
"NEW_ACHIEVEMENT_20_12_DESC" "Ricerca tutto."
|
"NEW_ACHIEVEMENT_20_12_DESC" "Ricerca tutto."
|
||||||
"NEW_ACHIEVEMENT_20_13_NAME" "Mutaforma"
|
|
||||||
"NEW_ACHIEVEMENT_20_13_DESC" "Sblocca tutti i mech e trasformati in ogniuno di essi."
|
|
||||||
"NEW_ACHIEVEMENT_20_14_NAME" "Sovraccarico"
|
"NEW_ACHIEVEMENT_20_14_NAME" "Sovraccarico"
|
||||||
"NEW_ACHIEVEMENT_20_14_DESC" "Colpisci un nemico ricoperto d'acqua con l'elettricità."
|
"NEW_ACHIEVEMENT_20_14_DESC" "Colpisci un nemico ricoperto d'acqua con l'elettricità."
|
||||||
"NEW_ACHIEVEMENT_20_15_NAME" "Deviazione"
|
"NEW_ACHIEVEMENT_20_15_NAME" "Deviazione"
|
||||||
"NEW_ACHIEVEMENT_20_15_DESC" "Distruggi un nemico con un suo colpo riflesso."
|
"NEW_ACHIEVEMENT_20_15_DESC" "Distruggi un'unità con un suo colpo riflesso."
|
||||||
"NEW_ACHIEVEMENT_20_17_NAME" "Un grave errore"
|
"NEW_ACHIEVEMENT_20_17_NAME" "Un grave errore"
|
||||||
"NEW_ACHIEVEMENT_20_17_DESC" "Ricerca il distributore."
|
"NEW_ACHIEVEMENT_20_17_DESC" "Ricerca il distributore."
|
||||||
"NEW_ACHIEVEMENT_20_18_NAME" "Costruttore"
|
"NEW_ACHIEVEMENT_20_18_NAME" "Costruttore"
|
||||||
@@ -51,44 +43,36 @@
|
|||||||
"NEW_ACHIEVEMENT_20_24_DESC" "Sconfiggi un boss."
|
"NEW_ACHIEVEMENT_20_24_DESC" "Sconfiggi un boss."
|
||||||
"NEW_ACHIEVEMENT_20_25_NAME" "Esploratore"
|
"NEW_ACHIEVEMENT_20_25_NAME" "Esploratore"
|
||||||
"NEW_ACHIEVEMENT_20_25_DESC" "Sblocca tutte le zone della campagna."
|
"NEW_ACHIEVEMENT_20_25_DESC" "Sblocca tutte le zone della campagna."
|
||||||
"NEW_ACHIEVEMENT_20_26_NAME" "Completista"
|
|
||||||
"NEW_ACHIEVEMENT_20_26_DESC" "Sblocca l'equipaggiamento personalizzato in tutte le zone."
|
|
||||||
"NEW_ACHIEVEMENT_20_29_NAME" "Materiale II"
|
"NEW_ACHIEVEMENT_20_29_NAME" "Materiale II"
|
||||||
"NEW_ACHIEVEMENT_20_29_DESC" "Sblocca il Torio."
|
"NEW_ACHIEVEMENT_20_29_DESC" "Sblocca il Torio."
|
||||||
"NEW_ACHIEVEMENT_20_31_NAME" "Materiale I"
|
"NEW_ACHIEVEMENT_20_31_NAME" "Materiale I"
|
||||||
"NEW_ACHIEVEMENT_20_31_DESC" "Sblocca il Titanio."
|
"NEW_ACHIEVEMENT_20_31_DESC" "Sblocca il Titanio."
|
||||||
"NEW_ACHIEVEMENT_21_0_NAME" "Kamikaze"
|
"NEW_ACHIEVEMENT_21_0_NAME" "Kamikaze"
|
||||||
"NEW_ACHIEVEMENT_21_0_DESC" "Riempi il tuo mech di esplosivi e muori, creando un esplosione."
|
"NEW_ACHIEVEMENT_21_0_DESC" "Riempi il tuo mech di esplosivi e muori."
|
||||||
"NEW_ACHIEVEMENT_21_1_NAME" "Ha inizio"
|
"NEW_ACHIEVEMENT_21_1_NAME" "Inizia"
|
||||||
"NEW_ACHIEVEMENT_21_1_DESC" "Costruisci una fabbrica di droni pugnalatori."
|
"NEW_ACHIEVEMENT_21_1_DESC" "Costruisci una fabbrica terrestre"
|
||||||
"NEW_ACHIEVEMENT_21_2_NAME" "Assalto Diretto"
|
"NEW_ACHIEVEMENT_21_2_NAME" "Assalto Diretto"
|
||||||
"NEW_ACHIEVEMENT_21_2_DESC" "Emetti un ordine di attacco usando il centro di comando."
|
"NEW_ACHIEVEMENT_21_2_DESC" "Emetti un ordine di attacco usando il centro di comando."
|
||||||
"NEW_ACHIEVEMENT_21_3_NAME" "Orda"
|
"NEW_ACHIEVEMENT_21_3_NAME" "Orda"
|
||||||
"NEW_ACHIEVEMENT_21_3_DESC" "Possiedi 100 unità attive contemporaneamente."
|
"NEW_ACHIEVEMENT_21_3_DESC" "Possiedi 100 unità attive contemporaneamente."
|
||||||
"NEW_ACHIEVEMENT_21_4_NAME" "Stormo"
|
"NEW_ACHIEVEMENT_21_4_NAME" "Stormo"
|
||||||
"NEW_ACHIEVEMENT_21_4_DESC" "Possiedi 10 Droni Fantasma attivi contemporaneamente."
|
"NEW_ACHIEVEMENT_21_4_DESC" "Possiedi 10 Costruttori attivi contemporaneamente."
|
||||||
"NEW_ACHIEVEMENT_21_5_NAME" "Esercito Esplosivo"
|
"NEW_ACHIEVEMENT_21_5_NAME" "Roboticista"
|
||||||
"NEW_ACHIEVEMENT_21_5_DESC" "Possiedi 50 Strisciatori attivi contemporaneamente."
|
"NEW_ACHIEVEMENT_21_5_DESC" "Costruisci tutti tipi di unità."
|
||||||
"NEW_ACHIEVEMENT_21_6_NAME" "Legione"
|
"NEW_ACHIEVEMENT_21_6_NAME" "Legione"
|
||||||
"NEW_ACHIEVEMENT_21_6_DESC" "Costruisci 1000 unità."
|
"NEW_ACHIEVEMENT_21_6_DESC" "Costruisci 1000 unità in totale."
|
||||||
"NEW_ACHIEVEMENT_21_7_NAME" "Super"
|
|
||||||
"NEW_ACHIEVEMENT_21_7_DESC" "Ottieni la valutazione S in una zona qualsiasi."
|
|
||||||
"NEW_ACHIEVEMENT_21_8_NAME" "Super Super"
|
|
||||||
"NEW_ACHIEVEMENT_21_8_DESC" "Ottieni la valutazione SS in una zona qualsiasi."
|
|
||||||
"NEW_ACHIEVEMENT_21_9_NAME" "Avresti dovusto ascoltare"
|
"NEW_ACHIEVEMENT_21_9_NAME" "Avresti dovusto ascoltare"
|
||||||
"NEW_ACHIEVEMENT_21_9_DESC" "Muori nella zona di esclusione dell'atterraggio nemico."
|
"NEW_ACHIEVEMENT_21_9_DESC" "Muori nella zona di esclusione dell'atterraggio nemico."
|
||||||
"NEW_ACHIEVEMENT_21_10_NAME" "Premi Shift"
|
"NEW_ACHIEVEMENT_21_10_NAME" "Ci sono unità navali per quello"
|
||||||
"NEW_ACHIEVEMENT_21_10_DESC" "Annega, in qualche modo."
|
"NEW_ACHIEVEMENT_21_10_DESC" "Annega."
|
||||||
"NEW_ACHIEVEMENT_21_11_NAME" "Collezionista"
|
"NEW_ACHIEVEMENT_21_11_NAME" "Collezionista"
|
||||||
"NEW_ACHIEVEMENT_21_11_DESC" "Riempi il nucleo alla capacità massima con ogni tipo di materiale."
|
"NEW_ACHIEVEMENT_21_11_DESC" "Riempi il nucleo alla capacità massima con ogni tipo di materiale."
|
||||||
"NEW_ACHIEVEMENT_21_12_NAME" "Folla"
|
"NEW_ACHIEVEMENT_21_12_NAME" "Folla"
|
||||||
"NEW_ACHIEVEMENT_21_12_DESC" "Ospita un server con 10 giocatori."
|
"NEW_ACHIEVEMENT_21_12_DESC" "Ospita un server con 10 giocatori."
|
||||||
"NEW_ACHIEVEMENT_21_13_NAME" "Invincibile"
|
"NEW_ACHIEVEMENT_21_13_NAME" "Invulnerabile"
|
||||||
"NEW_ACHIEVEMENT_21_13_DESC" "Costruisci le torrette Fusione e Spettro."
|
"NEW_ACHIEVEMENT_21_13_DESC" "Costruisci le torrette Fusione, Spettro e Tenebra."
|
||||||
"NEW_ACHIEVEMENT_21_14_NAME" "Ascesa"
|
"NEW_ACHIEVEMENT_21_14_NAME" "Ascesa"
|
||||||
"NEW_ACHIEVEMENT_21_14_DESC" "Usa l'ascensore spaziale."
|
"NEW_ACHIEVEMENT_21_14_DESC" "Usa l'Ascensore Spaziale."
|
||||||
"NEW_ACHIEVEMENT_21_15_NAME" "Autocompiacimento"
|
|
||||||
"NEW_ACHIEVEMENT_21_15_DESC" "Salta il decollo due volte e perdi il nucleo per mano nemica."
|
|
||||||
"NEW_ACHIEVEMENT_21_16_NAME" "Eresia"
|
"NEW_ACHIEVEMENT_21_16_NAME" "Eresia"
|
||||||
"NEW_ACHIEVEMENT_21_16_DESC" "Costruisci due distributori uno affianco all'altro."
|
"NEW_ACHIEVEMENT_21_16_DESC" "Costruisci due distributori uno affianco all'altro."
|
||||||
"NEW_ACHIEVEMENT_21_17_NAME" "Guardiano Solitario"
|
"NEW_ACHIEVEMENT_21_17_NAME" "Guardiano Solitario"
|
||||||
@@ -100,10 +84,32 @@
|
|||||||
"NEW_ACHIEVEMENT_21_20_NAME" "Modalità Classica"
|
"NEW_ACHIEVEMENT_21_20_NAME" "Modalità Classica"
|
||||||
"NEW_ACHIEVEMENT_21_20_DESC" "Abilita la pixelazione."
|
"NEW_ACHIEVEMENT_21_20_DESC" "Abilita la pixelazione."
|
||||||
"NEW_ACHIEVEMENT_21_21_NAME" "Alunno"
|
"NEW_ACHIEVEMENT_21_21_NAME" "Alunno"
|
||||||
"NEW_ACHIEVEMENT_21_21_DESC" "Apri la wiki dal gioco."
|
"NEW_ACHIEVEMENT_21_21_DESC" "Apri la Wiki dal gioco."
|
||||||
"NEW_ACHIEVEMENT_21_22_NAME" "Vantaggio"
|
"NEW_ACHIEVEMENT_21_22_NAME" "Vantaggio"
|
||||||
"NEW_ACHIEVEMENT_21_22_DESC" "Lanciati in una zona con 10,000 o più oggetti nell'equipaggiamento."
|
"NEW_ACHIEVEMENT_21_22_DESC" "Lanciati in una zona con 10,000 o più oggetti nell'equipaggiamento."
|
||||||
"NEW_ACHIEVEMENT_21_23_NAME" "Avviamento"
|
"NEW_ACHIEVEMENT_21_23_NAME" "Avviamento"
|
||||||
"NEW_ACHIEVEMENT_21_23_DESC" "Avvia un Reattore ad Impatto."
|
"NEW_ACHIEVEMENT_21_23_DESC" "Avvia un Reattore ad Impatto."
|
||||||
|
"NEW_ACHIEVEMENT_21_24_NAME" "Accelerazione"
|
||||||
|
"NEW_ACHIEVEMENT_21_24_DESC" "Attiva l'Acceleratore Interplanetario."
|
||||||
|
"NEW_ACHIEVEMENT_21_25_NAME" "La spirale"
|
||||||
|
"NEW_ACHIEVEMENT_21_25_DESC" "Gira e rigira va..."
|
||||||
|
"NEW_ACHIEVEMENT_21_26_NAME" "Escalazione"
|
||||||
|
"NEW_ACHIEVEMENT_21_26_DESC" "Costruisci un'unità di livello 5"
|
||||||
|
"NEW_ACHIEVEMENT_21_27_NAME" "Architetto"
|
||||||
|
"NEW_ACHIEVEMENT_21_27_DESC" "Crea 20 schematiche."
|
||||||
|
"NEW_ACHIEVEMENT_21_28_NAME" "Dominazione Globale"
|
||||||
|
"NEW_ACHIEVEMENT_21_28_DESC" "Cattura tutti settori su Serpulo."
|
||||||
|
"NEW_ACHIEVEMENT_21_29_NAME" "Ascensore Aereo"
|
||||||
|
"NEW_ACHIEVEMENT_21_29_DESC" "Prendi un'unità T5 sul payload di un Curatore."
|
||||||
|
"NEW_ACHIEVEMENT_21_30_NAME" "La forma finale"
|
||||||
|
"NEW_ACHIEVEMENT_21_30_DESC" "Unisci a loro."
|
||||||
|
"NEW_ACHIEVEMENT_21_31_NAME" "Produzione I"
|
||||||
|
"NEW_ACHIEVEMENT_21_31_DESC" "Raggiungi 5,000 oggetti/min di produzione totale in campagna."
|
||||||
|
"NEW_ACHIEVEMENT_26_0_NAME" "Produzione II"
|
||||||
|
"NEW_ACHIEVEMENT_26_0_DESC" "Raggiungi 50,000 oggetti/min di produzione totale in campaigna."
|
||||||
|
"NEW_ACHIEVEMENT_26_1_NAME" "Vittoria Assicurata"
|
||||||
|
"NEW_ACHIEVEMENT_26_1_DESC" "Cattura un settore mentre giochi su un settore differente."
|
||||||
|
"NEW_ACHIEVEMENT_26_2_NAME" "Piccolo Impero"
|
||||||
|
"NEW_ACHIEVEMENT_26_2_DESC" "Controlla 10 settori contemporaneamente."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
115
fastlane/metadata/steam/romanian/achievements.vdf
Normal file
115
fastlane/metadata/steam/romanian/achievements.vdf
Normal file
@@ -0,0 +1,115 @@
|
|||||||
|
"lang"
|
||||||
|
{
|
||||||
|
"Language" "romanian"
|
||||||
|
"Tokens"
|
||||||
|
{
|
||||||
|
"NEW_ACHIEVEMENT_20_1_NAME" "Fier Vechi"
|
||||||
|
"NEW_ACHIEVEMENT_20_1_DESC" "Distruge 1000 unități inamice."
|
||||||
|
"NEW_ACHIEVEMENT_20_2_NAME" "Curățenie"
|
||||||
|
"NEW_ACHIEVEMENT_20_2_DESC" "Distruge 100,000 unități inamice."
|
||||||
|
"NEW_ACHIEVEMENT_20_5_NAME" "Livrând la Nesfârșit"
|
||||||
|
"NEW_ACHIEVEMENT_20_5_DESC" "Lansează 100,000 materiale în total."
|
||||||
|
"NEW_ACHIEVEMENT_20_6_NAME" "Cuceritor"
|
||||||
|
"NEW_ACHIEVEMENT_20_6_DESC" "Câștigă 10 jocuri în modul atac."
|
||||||
|
"NEW_ACHIEVEMENT_20_7_NAME" "Campion"
|
||||||
|
"NEW_ACHIEVEMENT_20_7_DESC" "Câștigă 10 jocuri PvP multiplayer."
|
||||||
|
"NEW_ACHIEVEMENT_20_8_NAME" "Blitz"
|
||||||
|
"NEW_ACHIEVEMENT_20_8_DESC" "Distruge nucleul inamic dintr-o zonă de atac în 5 sau mai puține valuri."
|
||||||
|
"NEW_ACHIEVEMENT_20_9_NAME" "Ploaie de Nuclee"
|
||||||
|
"NEW_ACHIEVEMENT_20_9_DESC" "Lansează nuclee de 30 de ori."
|
||||||
|
"NEW_ACHIEVEMENT_20_10_NAME" "Tenace"
|
||||||
|
"NEW_ACHIEVEMENT_20_10_DESC" "Supraviețuiește 100 de valuri."
|
||||||
|
"NEW_ACHIEVEMENT_20_12_NAME" "Cercetător"
|
||||||
|
"NEW_ACHIEVEMENT_20_12_DESC" "Cercetează totul."
|
||||||
|
"NEW_ACHIEVEMENT_20_14_NAME" "Scurtcircuit"
|
||||||
|
"NEW_ACHIEVEMENT_20_14_DESC" "Lovește un inamic ud cu electricitate."
|
||||||
|
"NEW_ACHIEVEMENT_20_15_NAME" "Reflexie"
|
||||||
|
"NEW_ACHIEVEMENT_20_15_DESC" "Distruge o unitate cu propriul glonț reflectat."
|
||||||
|
"NEW_ACHIEVEMENT_20_17_NAME" "O greșeală Gravă"
|
||||||
|
"NEW_ACHIEVEMENT_20_17_DESC" "Cercetează Routerul."
|
||||||
|
"NEW_ACHIEVEMENT_20_18_NAME" "Crează"
|
||||||
|
"NEW_ACHIEVEMENT_20_18_DESC" "Construiește 10,000 de blocuri."
|
||||||
|
"NEW_ACHIEVEMENT_20_19_NAME" "Rade"
|
||||||
|
"NEW_ACHIEVEMENT_20_19_DESC" "Distruge 1,000 blocuri inamice."
|
||||||
|
"NEW_ACHIEVEMENT_20_20_NAME" "Un Dezastru Spectaculos"
|
||||||
|
"NEW_ACHIEVEMENT_20_20_DESC" "Cauzează explozia unui Reactor de Toriu supraîncălzit."
|
||||||
|
"NEW_ACHIEVEMENT_20_21_NAME" "Geograf"
|
||||||
|
"NEW_ACHIEVEMENT_20_21_DESC" "Crează 10 noi hărți."
|
||||||
|
"NEW_ACHIEVEMENT_20_22_NAME" "Browser"
|
||||||
|
"NEW_ACHIEVEMENT_20_22_DESC" "Descarcă o hartă de pe Workshop."
|
||||||
|
"NEW_ACHIEVEMENT_20_23_NAME" "Creator"
|
||||||
|
"NEW_ACHIEVEMENT_20_23_DESC" "Publică o hartă pe Workshop."
|
||||||
|
"NEW_ACHIEVEMENT_20_24_NAME" "Ucigaș"
|
||||||
|
"NEW_ACHIEVEMENT_20_24_DESC" "Distruge un gardian."
|
||||||
|
"NEW_ACHIEVEMENT_20_25_NAME" "Explorator"
|
||||||
|
"NEW_ACHIEVEMENT_20_25_DESC" "Deblochează toate zonele din campanie."
|
||||||
|
"NEW_ACHIEVEMENT_20_29_NAME" "Materia II"
|
||||||
|
"NEW_ACHIEVEMENT_20_29_DESC" "Deblozhează Toriul."
|
||||||
|
"NEW_ACHIEVEMENT_20_31_NAME" "Materia I"
|
||||||
|
"NEW_ACHIEVEMENT_20_31_DESC" "Deblochează Titaniul."
|
||||||
|
"NEW_ACHIEVEMENT_21_0_NAME" "Kamikaze"
|
||||||
|
"NEW_ACHIEVEMENT_21_0_DESC" "Controlează o unitate plină cu materiale explozive și mori."
|
||||||
|
"NEW_ACHIEVEMENT_21_1_NAME" "Începe"
|
||||||
|
"NEW_ACHIEVEMENT_21_1_DESC" "Construiește o fabrică de unități de artilerie."
|
||||||
|
"NEW_ACHIEVEMENT_21_2_NAME" "Asalt Direct"
|
||||||
|
"NEW_ACHIEVEMENT_21_2_DESC" "Trimite comanda Atac unităților aliate folosind centrul de comandă."
|
||||||
|
"NEW_ACHIEVEMENT_21_3_NAME" "Armate"
|
||||||
|
"NEW_ACHIEVEMENT_21_3_DESC" "100 unități active deodată."
|
||||||
|
"NEW_ACHIEVEMENT_21_4_NAME" "Stoluri"
|
||||||
|
"NEW_ACHIEVEMENT_21_4_DESC" "10 unități Poly active deodată."
|
||||||
|
"NEW_ACHIEVEMENT_21_5_NAME" "Robotician"
|
||||||
|
"NEW_ACHIEVEMENT_21_5_DESC" "Construiește fiecare tip de unitate."
|
||||||
|
"NEW_ACHIEVEMENT_21_6_NAME" "Legiuni"
|
||||||
|
"NEW_ACHIEVEMENT_21_6_DESC" "Construiește 1000 uunități în total."
|
||||||
|
"NEW_ACHIEVEMENT_21_9_NAME" "Trebuia să Asculți"
|
||||||
|
"NEW_ACHIEVEMENT_21_9_DESC" "Mori în zona de lansare a inamicului."
|
||||||
|
"NEW_ACHIEVEMENT_21_10_NAME" "Există Unități Navale pt Asta"
|
||||||
|
"NEW_ACHIEVEMENT_21_10_DESC" "Îneacă-te."
|
||||||
|
"NEW_ACHIEVEMENT_21_11_NAME" "Colector"
|
||||||
|
"NEW_ACHIEVEMENT_21_11_DESC" "Umple nucleul la capacitate maximă cu toate tipurile de materiale."
|
||||||
|
"NEW_ACHIEVEMENT_21_12_NAME" "Mulțime"
|
||||||
|
"NEW_ACHIEVEMENT_21_12_DESC" "Găzduieș e un server cu 10 jucători."
|
||||||
|
"NEW_ACHIEVEMENT_21_13_NAME" "Invulnerabil"
|
||||||
|
"NEW_ACHIEVEMENT_21_13_DESC" "Construiește arme Meltdown, Spectre și Foreshadow."
|
||||||
|
"NEW_ACHIEVEMENT_21_14_NAME" "Decolare"
|
||||||
|
"NEW_ACHIEVEMENT_21_14_DESC" "Folosește Platforma de Lansare."
|
||||||
|
"NEW_ACHIEVEMENT_21_16_NAME" "Erezie"
|
||||||
|
"NEW_ACHIEVEMENT_21_16_DESC" "Construieste 2 routere unul lângă altul."
|
||||||
|
"NEW_ACHIEVEMENT_21_17_NAME" "Gardianul Singuratic"
|
||||||
|
"NEW_ACHIEVEMENT_21_17_DESC" "0 valuri fără să fi construit blocuri."
|
||||||
|
"NEW_ACHIEVEMENT_21_18_NAME" "Incinerare"
|
||||||
|
"NEW_ACHIEVEMENT_21_18_DESC" "Folosește Piratită în orice armă."
|
||||||
|
"NEW_ACHIEVEMENT_21_19_NAME" "Eficiență"
|
||||||
|
"NEW_ACHIEVEMENT_21_19_DESC" "Răcește o armă cu apă sau criofluid."
|
||||||
|
"NEW_ACHIEVEMENT_21_20_NAME" "Modul Classic"
|
||||||
|
"NEW_ACHIEVEMENT_21_20_DESC" "Activează pixelarea."
|
||||||
|
"NEW_ACHIEVEMENT_21_21_NAME" "Savant"
|
||||||
|
"NEW_ACHIEVEMENT_21_21_DESC" "Descide Wikiul din joc."
|
||||||
|
"NEW_ACHIEVEMENT_21_22_NAME" "Avans"
|
||||||
|
"NEW_ACHIEVEMENT_21_22_DESC" "Lansează într-o zonă cu peste 10,000 de materiale configurate."
|
||||||
|
"NEW_ACHIEVEMENT_21_23_NAME" "Aprinderea"
|
||||||
|
"NEW_ACHIEVEMENT_21_23_DESC" "Pornește un Reactor de Impact."
|
||||||
|
"NEW_ACHIEVEMENT_21_24_NAME" "Accelerare"
|
||||||
|
"NEW_ACHIEVEMENT_21_24_DESC" "Activează Acceleratorul Interplanetar."
|
||||||
|
"NEW_ACHIEVEMENT_21_25_NAME" "Spirala"
|
||||||
|
"NEW_ACHIEVEMENT_21_25_DESC" "Se învârte și se învârte..."
|
||||||
|
"NEW_ACHIEVEMENT_21_26_NAME" "Ascensiune"
|
||||||
|
"NEW_ACHIEVEMENT_21_26_DESC" "Construiește o unitate de Nivelul 5."
|
||||||
|
"NEW_ACHIEVEMENT_21_27_NAME" "Arhitect"
|
||||||
|
"NEW_ACHIEVEMENT_21_27_DESC" "Crează 20 de scheme."
|
||||||
|
"NEW_ACHIEVEMENT_21_28_NAME" "La Scară Globală"
|
||||||
|
"NEW_ACHIEVEMENT_21_28_DESC" "Capturează fiecare sector de pe Serpulo."
|
||||||
|
"NEW_ACHIEVEMENT_21_29_NAME" "Transport Aerian"
|
||||||
|
"NEW_ACHIEVEMENT_21_29_DESC" "Ridică o unitate de Nivel 5 cu un transportator Oct."
|
||||||
|
"NEW_ACHIEVEMENT_21_30_NAME" "Forma Supremă"
|
||||||
|
"NEW_ACHIEVEMENT_21_30_DESC" "Alătură-te lor."
|
||||||
|
"NEW_ACHIEVEMENT_21_31_NAME" "Producție I"
|
||||||
|
"NEW_ACHIEVEMENT_21_31_DESC" "Produ cel puțin 5,000 de materiale/min în total în campanie."
|
||||||
|
"NEW_ACHIEVEMENT_26_0_NAME" "Producție II"
|
||||||
|
"NEW_ACHIEVEMENT_26_0_DESC" "Produ cel puțin 50,000 items/min de materiale/min în total în campanie."
|
||||||
|
"NEW_ACHIEVEMENT_26_1_NAME" "Victorie Asigurată"
|
||||||
|
"NEW_ACHIEVEMENT_26_1_DESC" "Capturează un sector în timp ce joci în alt sector."
|
||||||
|
"NEW_ACHIEVEMENT_26_2_NAME" "Micul Imperiu"
|
||||||
|
"NEW_ACHIEVEMENT_26_2_DESC" "Controlează 10 sectoare deodată."
|
||||||
|
}
|
||||||
|
}
|
||||||
65
fastlane/metadata/steam/romanian/description.txt
Normal file
65
fastlane/metadata/steam/romanian/description.txt
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
[img]{STEAM_APP_IMAGE}/extras/ezgif-4-0e70c282f775.gif[/img]
|
||||||
|
|
||||||
|
[h2]Gameplay[/h2]
|
||||||
|
|
||||||
|
[list]
|
||||||
|
[*] Create elaborate supply chains of conveyor belts to feed ammo into your turrets and produce materials to use for building
|
||||||
|
[*] Use production blocks to create a wide variety of advanced materials
|
||||||
|
[*] Defend your structures from waves of enemies
|
||||||
|
[*] Play with your friends in cross-platform multiplayer co-op games, or challenge them in team-based PvP matches
|
||||||
|
[*] Distribute liquids and fight constant challenges, like outbreaks of fire or enemy flier raids
|
||||||
|
[*] Get the most out of your production by supplying optional coolant and lubricant
|
||||||
|
[*] Produce a wide variety of units for automatic management of your base or assault on enemy bases
|
||||||
|
[/list]
|
||||||
|
|
||||||
|
[img]{STEAM_APP_IMAGE}/extras/ezgif-1-8679abe089cd.gif[/img]
|
||||||
|
|
||||||
|
[h2]Campaign[/h2]
|
||||||
|
|
||||||
|
[list]
|
||||||
|
[*] Conquer the planet Serpulo as you advance through 250+ procedurally generated sectors and 16 hand-made maps
|
||||||
|
[*] Capture territory and set up factories to produce resources while you play other sectors
|
||||||
|
[*] Defend your sectors from periodic invasions
|
||||||
|
[*] Coordinate resource distribution between sectors via launch pads
|
||||||
|
[*] Research new blocks to fuel progress
|
||||||
|
[*] Invite your friends to complete missions together
|
||||||
|
[*] 120+ technology blocks to master
|
||||||
|
[*] 33 different types of drones, mechs and ships
|
||||||
|
[*] 50+ achievements to complete
|
||||||
|
[/list]
|
||||||
|
|
||||||
|
[h2][h2]Gamemodes[/h2][/h2]
|
||||||
|
|
||||||
|
[list]
|
||||||
|
[*] [b]Survival[/b]: Build turrets to defend from enemies in tower-defense based gameplay. Survive as long as possible, optionally launching your core to use your collected resources for research. Prepare your base for intermittent attacks from airborne bosses.
|
||||||
|
[*] [b]Attack[/b]: Build factories for units to destroy the enemy cores, while simultaneously defending your base from waves of enemy units. Create a variety of different types of support and offensive unit to assist you in your goals. Optionally enable an AI that builds defensive structures to an extra challenge.
|
||||||
|
[*] [b]PvP[/b]: Compete with other players on up to 4 different teams to destroy each other's cores. Create units, or attack other bases directly with your mechs.
|
||||||
|
[*] [b]Sandbox[/b]: Play around with infinite resources and no enemy threat. Use sandbox-specific item and liquid source blocks to test out designs, and spawn in enemies on request.
|
||||||
|
[/list]
|
||||||
|
|
||||||
|
[img]{STEAM_APP_IMAGE}/extras/2020-11-30_10-46-02.gif[/img]
|
||||||
|
|
||||||
|
[h2]Custom Games & Cross-Platform Multiplayer[/h2]
|
||||||
|
|
||||||
|
[list]
|
||||||
|
[*] 16 built in maps for custom games, in addition to campaign
|
||||||
|
[*] Play co-op, PvP or sandbox
|
||||||
|
[*] Join a public dedicated server, or invite friends to your own private session
|
||||||
|
[*] Customizable game rules: Change block costs, enemy stats, starting items, wave timing and more
|
||||||
|
[*] Mix & match gamemodes: Combine PvP and PvE gamemodes together
|
||||||
|
[/list]
|
||||||
|
|
||||||
|
[h2]Custom Map Editor[/h2]
|
||||||
|
|
||||||
|
[list]
|
||||||
|
[*] Paint terrain with an editor UI
|
||||||
|
[*] Edit and preview structures in-game
|
||||||
|
[*] Configurable tool modes: Change how each tool functions
|
||||||
|
[*] Powerful map generation system, with many different types of filters for procedural manipulation of terrain
|
||||||
|
[*] Apply noise, distortion, smoothing, erosion, symmetry, ore generation and random terrain to your maps
|
||||||
|
[*] Randomize and configure ore generation, as well as placement of river and resource tiles
|
||||||
|
[*] Configure enemy wave layouts
|
||||||
|
[*] Share exported maps on the Steam Workshop
|
||||||
|
[*] Customize base map rules
|
||||||
|
[*] Use 80+ different environmental blocks
|
||||||
|
[/list]
|
||||||
1
fastlane/metadata/steam/romanian/short-description.txt
Normal file
1
fastlane/metadata/steam/romanian/short-description.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
An open-ended tower-defense game with a focus on resource management.
|
||||||
Reference in New Issue
Block a user