Example #1
0
 public void Trapcard() {
   System.out.println("You fall in to the trap!! You go to the start line.");
   JFrame frame = new JFrame();
   JButton button = new JButton("You Fell into Trap!! Click this to close this frame");
   button.addActionListener(this);
   frame.getContentPane().add(BorderLayout.SOUTH, button);
   text = new JTextArea(40, 40);
   text.setLineWrap(true);
   text.setText(
       "You Just Activated My Trap Card!!!!!!!!!!!\nTrap Card!!!!!!!!!!!!!!!!!!!!\nTrap!!!!!!!!!\nCard!!!!!!!!!!!\n");
   frame.getContentPane().add(BorderLayout.CENTER, text);
   frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
   frame.setSize(350, 300);
   frame.setVisible(true);
   Sound_trap.Sound_pro();
 }
Example #2
0
 public void actionPerformed(ActionEvent ev) {
   text.append(
       "\n\nYou Just Activated My Trap Card!!!\n\nNow that You have clicked this, you cannot run this game anymore. GameOver!!");
   Sound_trap.Sound_pro();
 }