Skip to content
This repository has been archived by the owner on Apr 25, 2020. It is now read-only.

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Raymo111 committed Jun 8, 2018
1 parent 4c2e9d2 commit 8d2112d
Show file tree
Hide file tree
Showing 18 changed files with 67 additions and 60 deletions.
File renamed without changes
56 changes: 28 additions & 28 deletions GUI Package/achievementList.txt → achievementList.txt
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
Journey of a thousand miles starts with one step|win 1 battle
the Success kid|win 100 battles
I'm bald, I'm strong|win 1000 battles
Omae wa mou shindeiru|win 2000 battles
Main heroine of Asadora|lose 10 battles
Letter from 1976|lose 100 battles
I have not failed. I've just found 1000 ways that won't work|lose 1000 battles
Never, never, never give up|lose 2000 battles
It's a trap|miss 100 times
Do u no dewae|miss 1000 times
Can't touch this|miss 5000 times
______________________________________________________
Somebody toucha my spaghet|fight 10 battles
Dormammu i've come to bargain|fight 100 battles
This is Sparta!|fight 1000 battles
Battleships: Infinity War|fight 2018 battles
SHINJI GET INTO THE ROBOT!!!!!!!|fight 5000 battles
24|total 24 hours played
El psy congroo|total 2036 hours played
Jinrui Hokan|Complete all other achievements
_____________________________________________________
Wintergarten|build 50 times
BUILD 100|build 100 times
Never gonna give you up|build 1000 times
Senpai noticed me|one character intimacy achieve 100%
Bad romance|dismantle 10 characters
A snap of fingers|dismantle 50 characters
It's bigger from the inside|expand capacity by 100
Journey of a thousand miles starts with one step|win 1 battle
the Success kid|win 100 battles
I'm bald, I'm strong|win 1000 battles
Omae wa mou shindeiru|win 2000 battles
Main heroine of Asadora|lose 10 battles
Letter from 1976|lose 100 battles
I have not failed. I've just found 1000 ways that won't work|lose 1000 battles
Never, never, never give up|lose 2000 battles
It's a trap|miss 100 times
Do u no dewae|miss 1000 times
Can't touch this|miss 5000 times
______________________________________________________
Somebody toucha my spaghet|fight 10 battles
Dormammu i've come to bargain|fight 100 battles
This is Sparta!|fight 1000 battles
Battleships: Infinity War|fight 2018 battles
SHINJI GET INTO THE ROBOT!!!!!!!|fight 5000 battles
24|total 24 hours played
El psy congroo|total 2036 hours played
Jinrui Hokan|Complete all other achievements
_____________________________________________________
Wintergarten|build 50 times
BUILD 100|build 100 times
Never gonna give you up|build 1000 times
Senpai noticed me|one character intimacy achieve 100%
Bad romance|dismantle 10 characters
A snap of fingers|dismantle 50 characters
It's bigger from the inside|expand capacity by 100
56 changes: 28 additions & 28 deletions GUI Package/achievementRewardList.txt → achievementRewardList.txt
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
10 0
50 0
100 1
500 5
75 0
100 0
0 10
10 3
50 1
100 0
500 0
������������
10 1
50 0
10 10
1000 6
300 10
240 4
150 10
777 7
������������
100 0
0 10
200 20
10 1
1 5
100 5
150 9
10 0
50 0
100 1
500 5
75 0
100 0
0 10
10 3
50 1
100 0
500 0
������������
10 1
50 0
10 10
1000 6
300 10
240 4
150 10
777 7
������������
100 0
0 10
200 20
10 1
1 5
100 5
150 9
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
15 changes: 11 additions & 4 deletions src/system.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,36 +5,43 @@
import java.awt.event.MouseListener;

import javax.swing.*;

public class system extends JFrame {
MouseListener directory = new MouseListener(){
MouseListener directory = new MouseListener() {
public void mouseClicked(MouseEvent event) {
Object source = event.getSource();
if(source.equals(baseInter.gameButton)){
if (source.equals(baseInter.gameButton)) {
System.out.println(-1);
remove(baseInter);
add(gameInter);
repaint();
}
}

public void mouseEntered(MouseEvent e) {
}

public void mouseExited(MouseEvent e) {
}

public void mousePressed(MouseEvent e) {
}

public void mouseReleased(MouseEvent e) {
}
};
base baseInter = new base();
game gameInter = new game();
public system(){

public system() {
baseInter.gameButton.addMouseListener(directory);
add(baseInter);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setResizable(false);
setSize(1300,700);
setSize(1300, 700);
setVisible(true);
}

public static void main(String[] args) {
// TODO Auto-generated method stub
system theGame = new system();
Expand Down
File renamed without changes

0 comments on commit 8d2112d

Please sign in to comment.