BISPO

BISPO

Открыть в Steam
Steam ID
Steam2
Steam3
Steam64

Информация

Дата регистрации
05.02.2021
О себе
import java.util.Scanner
class Jogador {
private String nome;
private int vida;
private int fome;
private int sede;

public Jogador(String nome) {
this.nome = nome;
this.vida = 100;
this.fome = 0;
this.sede = 0;
}

public void comer() {
if (fome > 0) {
fome -= 20;
vida += 10;
System.out.println(nome + " comeu e sua fome diminuiu. Sua vida aumentou.");
} else {
System.out.println(nome + " não está com fome.");
}
}

public void beber() {
if (sede > 0) {
sede -= 20;
vida += 10;
System.out.println(nome + " bebeu e sua sede diminuiu. Sua vida aumentou.");
} else {
System.out.println(nome + " não está com sede.");
}
}

public void coletarRecursos() {
System.out.println(nome + " coletou recursos. Recursos adicionados ao inventário.");
}

public void construir() {
System.out.println(nome + " construiu algo. Construção concluída.");
}

public void mostrarStatus() {
System.out.println("Status de " + nome + ":");
System.out.println("Vida: " + vida);
System.out.println("Fome: " + fome);
System.out.println("Sede: " + sede);
}

public void passarTempo() {
// Simulação do tempo passando: aumenta fome e sede
fome += 10;
sede += 10;
vida -= 5;
System.out.println("O tempo passou. Fome e sede aumentaram. Vida diminuiu.");
}

// Getters e Setters
public String getNome() {
return nome;
}

public int getVida() {
return vida;
}

public int getFome() {
return fome;
}

public int getSede() {
return sede;
}
}

public class JogoDeSobrevivencia {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Digite o nome do jogador: ");
String nomeJogador = scanner.nextLine();

Jogador jogador = new Jogador(nomeJogador);

boolean jogando = true;
while (jogando) {
System.out.println("\nO que deseja fazer, " + jogador.getNome() + "?");
System.out.println("1. Comer");
System.out.println("2. Beber");
System.out.println("3. Coletar Recursos");
System.out.println("4. Construir");
System.out.println("5. Ver Status");
System.out.println("6. Passar Tempo");
System.out.println("7. Sair");

int escolha = obterEscolhaValida(scanner, 1, 7);

switch (escolha) {
case 1:
jogador.comer();
break;
case 2:
jogador.beber();
break;
case 3:
jogador.coletarRecursos();
break;
case 4:
jogador.construir();
break;
case 5:
jogador.mostrarStatus();
break;
case 6:
jogador.passarTempo();
break;
case 7:
jogando = false;
System.out.println("Saindo do jogo...");
break;
default:
System.out.println("Opção inválida.");
}
}

scanner.close();
}
Collect cardsPlay any of the participating Trading Cards games to get trading cards. Up to half the card set is dropped through game play, the other half is earned through your collecting prowess.

Craft game badgesOnce you've collected a set of cards you can craft them into a game badge. Like the current badges, they are tied to your account and are shown on your profile. Unlike the current badges, crafting games badges earns you tradable items like emoticons, profile backgrounds, and coupons. Level up your badge by collecting the set again and earning more items.

Level upAll badges now have XP which contributes to your Steam Level, a summary of your badge collection. You can view someone's Steam Level by hovering over their avatar. Leveling up earns you non-tradable items like profile showcases, extra friends list slots, and more.


Visit the update page for more details. You can discuss trading cards in this group's General Discussions Forum, or look for other collectors to trade with in the Trading Forum.

Participating Games
Trading Cards Overview
Frequently Asked QuestionsNo information given.