游戏界面使用JFrame和JPanel构建。背景图通过BG类绘制。英雄机和敌机在界面上显示并移动。子弹从英雄机发射并在屏幕上移动。游戏有四种状态:READY、RUNNING、PAUSE、GAMEOVER。状态通过鼠标点击进行切换:点击开始游戏(从READY变为RUNNING)。点击重新开始游戏(从GAMEOVER变为READY)。鼠标移出窗口时游戏暂停(从RUNNING变为PAUSE)。鼠标移入窗口时游戏继续(从PAUSE变为RUNNING)。开局默认玩家生命值为3,分数为0。每隔一定时间随机生成敌机(小飞机、大飞机、小飞碟)。敌机在屏幕上移动,并与英雄机进行碰撞检测。英雄机可以发射子弹。子弹在屏幕上移动,并与敌机进行碰撞检测。英雄机与敌机发生碰撞时,英雄机会损失一条生命值。子弹与敌机发生碰撞时,敌机会被摧毁,玩家的分增加。当子弹与奖励机发生碰撞时,奖励机会被摧毁,玩家随机获得两张奖励(生命值加1、双倍子弹)。在屏幕左上角显示当前的生命值和得分。生命值减少到0时,游戏进入结束状态。再次点击,重新开始游戏。

1.图片素材(百度网盘分享)

链接:https://pan.baidu.com/s/10QiTcddI_Zxw5jbn8fmOpA?pwd=huan
提取码:huan

94275238511a952241f542850903596f_f83780494c064a509c2d664a6edbfee4.png

2.主页面world.java

package plane.gzeu;

import javax.swing.*;
import java.awt.*;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.util.Arrays;
import java.util.Timer;
import java.util.TimerTask;

public class World extends JPanel {

//ImageIcon类:保存图片的路径----->读取图片

// ImageIcon icon = new ImageIcon("images\background.png");
// BG bg = new BG(0,0,420,700,2);
// Airplane airplane = new Airplane(100,200,300,620,2);
// Bee bee = new Bee(200,100,200,700,2);

BG bg = new BG();
EnemyPlane [] planes;
Hero hero;
int index; //用来控制敌机的数量
Bullet[] bullets;  //创建子弹的数组
int life; //英雄机的生命值
int score; //分数
//定义游戏的四种状态:准备,运行,暂停,结束(常量)
public static final int READY = 0;
public static final int RUNNING = 1;
public static final int PAUSE = 2;
public static final int GAMEOVER = 3;
//游戏的初始状态
int state = READY;


//    Airplane [] airPlanes = new Airplane[10];

// Bigairplane [] bigAirPlanes = new Bigairplane[10];
// Bee [] bee = new Bee[10];
// Bom [] bom = new Bom[4];
// Bullet [] bullets = new Bullet[3];
// Hero [] hero =new Hero[2];

//初始化方法
public void init(){
    bg = new BG();
    hero = new Hero();
    planes = new EnemyPlane[0]; //默认一个敌机都没有
    bullets = new Bullet[0];  //默认一个子弹都没有
    index = 0; //默认从0开始
    life = 3; //默认3条命
    score = 0; //分数为0
}
public World() {
    init();

// for(int i=0;i<planes.length;i++){
// if(i%2==0){
// planes[i]=new Airplane();
// }
// else if(i%5==0 && i%2!=0){
// planes[i] = new Bee();
// }
// else {
// planes[i] = new Bigairplane();
// }
// }
// for(int i =0;i<airPlanes.length;i++){
// airPlanes[i] = new Airplane();
// bigAirPlanes[i]=new BigAirPlane();
// bee[i]=new Bee();
// bom[i]=new Bom();
// bullets[i]=new Bullet();
// hero[i]=new Hero();

}
//生成敌机的方法
public void createPlane(){
    if(index%16==0){
        int n = (int)(Math.random()*10);
        EnemyPlane plane;
        switch (n){
            case 9 :
                plane = new Bee(); //10%生成小飞碟
                break;
            case 8 :
            case 7 :
                plane = new Bigairplane(); //20%生成大飞机
                break;
            default:
                plane = new Airplane(); //70%生成小飞机

        }
        //将敌机存入数组中之前,要先对数组进行扩容处理
        planes = Arrays.copyOf(planes,planes.length+1);
        //将生存的敌机放入数组的最后一个位置
        planes[planes.length-1] = plane;
    }
}

// for(int i =0;i<bigAirPlanes.length;i++){
// bigAirPlanes[i]=new Bigairplane();
// }
// }

//绘制图片printing
@Override
public void paint(Graphics g) { //paint挂载到当前类,当前类实例化(创建对象)时自动调用

// super.paint(g);
// icon.paintIcon(this,g,0,y1++); //绘制背景,默认第一个绘制
// bg.icon.paintIcon(this,g,(int)bg.x,(int)bg.y);
// bg.move();
// airplane.icon.paintIcon(this,g,(int)airplane.x,(int)airplane.y);
// bee.icon.paintIcon(this,g,(int)bee.x,(int)bee.y);

    bg.painting(g);
    hero.painting(g);
    for(int i=0;i<planes.length;i++){
        planes[i].painting(g);
    }
    for(int i=0;i<bullets.length;i++){
        bullets[i].painting(g);
    }
    g.setColor(new Color(255,255,255));
    //设置字体
    g.setFont(new Font("微软雅黑",Font.BOLD,20));
    g.drawString("生命值"+life,20,20);
    g.drawString("分数"+score,20,40);
    if(state==READY){
        Images.start.paintIcon(this,g,0,0);
    }
    if(state==PAUSE){
        Images.pause.paintIcon(this,g,0,0);
    }
    if(state==GAMEOVER){
        Images.gameover.paintIcon(this,g,0,0);
    }

// for(int i =0;i<airPlanes.length;i++){
// airPlanes[i].painting(g);
// bigAirPlanes[i].painting(g);
// bee[i].painting(g);
// bom[i].painting(g);
// bullets[i].painting(g);
// hero[i].painting(g);
// }
// for(int i =0;i<bigAirPlanes.length;i++){
// bigAirPlanes[i].painting(g);
// }

    repaint();//刷新窗口
}
public static void main(String[] args) {
    //1.显示画框(外层):JFrame
    JFrame jf = new JFrame();

    //2.显示面板:Jpanel
    World jp =new World();

    //3.将面板放入画框中:
    jf.add(jp);

    //对窗口进行设置
    jf.setTitle("我的窗口");//设置标题
    jf.setSize(436,700); //设置窗口大小
    jf.setLocationRelativeTo(null); //居中显示
    jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); //设置关闭窗口后自动结束程序

    //4.显示窗口
    jf.setVisible(true);
    jp.action();
}
//唤醒定时器的方法
public void action(){
    java.util.Timer timer = new Timer();
    MyTesk mt = new MyTesk();
    timer.schedule(mt,1000,1000/50);
    this.addMouseListener(new MouseAdapter() {
        //监听鼠标点击
        @Override
        public void mouseClicked(MouseEvent e) {
            if(state==READY){
                state=RUNNING;
            }
            if(state==GAMEOVER){
                state=READY;
                init();
            }
        }
        //鼠标移除
        @Override
        public void mouseExited(MouseEvent e) {

// System.out.println("鼠标移出");

            if(state==RUNNING){
                state=PAUSE;
            }
        }
        //鼠标移入
        @Override
        public void mouseEntered(MouseEvent e) {
            if(state==PAUSE){
                state=RUNNING;
            }
        }
    });
    //匿名内部类
    MouseAdapter mouseAdapter = new MouseAdapter() {
        @Override
        public void mouseMoved(MouseEvent e) {
            if(state==RUNNING){
                int x = e.getX();
                int y = e.getY();
                hero.move(x,y);
            }
        }
    };
    //安装监听器
    this.addMouseMotionListener(mouseAdapter);
}
public void createBullet(){
    if(!hero.isLiving()){ //英雄机死亡不发射子弹
        return;
    }
    if(index%17==0){
        Bullet[] bullets1 = hero.double_fire();
        //俩个数组的合并
       Bullet[] arr = Arrays.copyOf(bullets,bullets.length+bullets1.length);
        System.arraycopy(bullets1,0,arr,bullets.length,bullets1.length);
        bullets = arr;

// Bullet bullet =hero.fire(); //英雄机调用fire方法生成子弹
// //将子弹放入数组中
// bullets = Arrays.copyOf(bullets,bullets.length+1); //子弹扩容
// bullets[bullets.length-1] = bullet;

    }
}
//加分的方法
public void addScore(FlyingObjesct plane){
    if(plane.isDead()){
        if(plane instanceof Enemy){
            Enemy enemy = (Enemy) plane; //需要做一个强制转化
            score += enemy.getScore();
        }
        if(plane instanceof Aword){
            Aword aword = (Aword) plane;
            int  type =aword.getAword();
            if(type == Aword.DOUBLE_FIRE){
                hero.getdouble_fire();
            }
            if(type == Aword.LIFE){
                life++;
            }
        }
    }
}
//检测敌机与英雄机的碰撞
public void hero_hit(){
    if(hero.isLiving()){
        for(int i=0;i<planes.length;i++){
            if(!planes[i].isLiving()){
                continue;
            }
            if(hero.bong(planes[i])){
                hero.goDead();
                planes[i].goDead();
                break;
            }
        }
    }
    else if(hero.isWait()){ //僵尸状态
        if(life>1){
            //重新开始
            hero = new Hero();
            //清屏
            for(int i=0;i<planes.length;i++){
                planes[i].goDead();
            }
            life--;
        }

        else{
            life--;
            state=GAMEOVER;
        }

    }
}
//检测每个敌机与子弹的碰撞情况
public void hit(){
    for(int i=0;i<bullets.length;i++){
        Bullet bullet = bullets[i]; //拿出每一颗子弹
        if(!bullet.isLiving()){
            continue;
        }
        for(int j=0;j<planes.length;j++){
            FlyingObjesct p = planes[j];
            if(!p.isLiving()){
                continue;
            }
            if(p.bong(bullet)){  //被击中
                p.attack();
                bullet.goDead();
                addScore(p);
            }
        }
    }
}

//清理爆炸的飞机
public void clean(){
    //清除飞机
    EnemyPlane[] living = new EnemyPlane[planes.length];
    int index = 0;
    for(int i=0;i<planes.length;i++){  //遍历敌机数组
        if(planes[i].isWait() || planes[i].outOfBound()){  //如果是等待状态的效果就跳过
            continue;
        }
        living[index++] = planes[i];  //将不是等待状态的敌机存在living里面
    }
    planes = Arrays.copyOf(living,index);
    //清除子弹
    Bullet[] livingBullet = new Bullet[bullets.length];
    index = 0;
    for(int i=0;i<bullets.length;i++){
        if(bullets[i].isDead() || bullets[i].outOfBound()){    //如果是已经爆炸的子弹就跳过
            continue;
        }
        livingBullet[index++] = bullets[i];
    }
    bullets = Arrays.copyOf(livingBullet,index);
}


class MyTesk extends TimerTask {

    @Override
    public void run() {
        index++;
        if(state == RUNNING){
            createPlane(); //调用生成敌机的方法
            createBullet(); //调用生成子弹的方法
            hit();//调用子弹击打的效果
            clean(); //调用清理敌机方法
            hero_hit();
            bg.move();
            for(int i =0;i<planes.length;i++){
                planes[i].move();
            }
            for(int i =0;i<bullets.length;i++){
                bullets[i].move();
            }
        }

    }
}

}
3.小飞机类Airplane.java

package plane.gzeu;

import javax.swing.*;
//飞机类
public class Airplane extends EnemyPlane implements Enemy{ // 实现接口时,要实现接口中的方法

public Airplane(){
    this.images = Images.airplane;
    w = images[0].getIconWidth();
    h = images[0].getIconHeight();
    x=(int)(Math.random()*(420-images[0].getIconWidth()));
    y=-2*images[0].getIconHeight();
    this.step=(Math.random()*2.5+0.7);
    this.icon=new ImageIcon("images\\airplane1.png");

// this.icon = Images.airplane[0];

}
public Airplane(double x, double y, double w, double h,double speed) {

// super(x, y, w, h);

    this.step=speed;
    this.icon=Images.airplane[0];
}


@Override
public int getScore() {
    return 10;
}

}
4.大飞机类Bigairplane

package plane.gzeu;

//大飞机类
public class Bigairplane extends EnemyPlane implements Enemy{

public Bigairplane(double x, double y, double w, double h,double step) {

// super(x, y, w, h);

    this.step=step;
    this.icon = Images.bigairplane[0];
}
public Bigairplane(){
    this.images = Images.bigairplane; //初始化数组
    w = images[0].getIconWidth();
    h = images[0].getIconHeight();
    x=(int)(Math.random()*(420-images[0].getIconWidth()));
    y=-2*images[0].getIconHeight();
    this.step=(Math.random()*3.5+0.7);

// this.icon = Images.bigairplane[0];

    life = 4;
}

@Override
public int getScore() {
    return 50;
}

}
5.英雄机类Hero.java

package plane.gzeu;

import javax.swing.*;

import static plane.gzeu.Images.bullet;

public class Hero extends EnemyPlane{

public Hero(){
    this.images = Images.hero;
    x=431/2-images[0].getIconWidth()/2;
    y=510;
    w=images[0].getIconWidth();
    h=images[0].getIconHeight();

// this.speed=0.2;

    this.icon = Images.hero[0];
}
public Hero(double x, double y, double w, double h,double step) {

// super(x, y, w, h);

    this.step=step;

// this.icon = new ImageIcon("images\hero1.png"); //设置了Images类直接调用类名就可以引用图片

    this.icon = Images.hero[0];
}
@Override
public void move() {}
//接收鼠标的坐标
public void move(int x,int y) {
    this.x= x-images[0].getIconWidth()/2;
    this.y = y-images[0].getIconHeight()/2;
}
/*
 * 子弹的位置(在英雄机上) b.x = h.x-images[0].getIconWidth()/2; b.y=h.y
 * 子弹的移动:向上:b.y-=b.step;
 * 子弹是无限的:数序扩容
 * 射击方法:当英雄机调用一次射击方法时,就发射一个子弹
 * */
//射击的方法
public Bullet fire(){
    double x = this.x+w/2-4; //获取英雄机的x坐标
    Bullet bullet = new Bullet(x,y);//将处理过后的坐标传给子弹
    return bullet; //将子弹返回
}
//获取双倍子弹的方法
int doubleTime = 0; // 双倍子弹的时间,20次
public void getdouble_fire(){
    doubleTime = 20;
}
//双倍子弹方法
public Bullet[] double_fire(){
    if(doubleTime>0){
        double x = this.x+w/2-7;
        double x1 = this.x+w/2-2; //获取英雄机的x坐标
        Bullet bullet1 = new Bullet(x,y);
        Bullet bullet2 = new Bullet(x1,y);//将处理过后的坐标传给子弹
        Bullet [] bullets = new Bullet[]{bullet1,bullet2};

// return new Bullet[]{bullet1,bullet2};

        return bullets;
    }
    else {
        double x = this.x+w/2-4; //获取英雄机的x坐标
        Bullet bullet1 = new Bullet(x,y);
        return new Bullet[]{bullet1};
    }

//

}

//测试

// public static void main(String[] args) {
// Hero hero = new Hero();
// hero.move(200,300);
// Bullet bullet = hero.fire();
// System.out.println(bullet.x+" "+bullet.y);
// }
}
6.敌机类Bee.java

package plane.gzeu;

import javax.swing.*;

public class Bee extends EnemyPlane implements Aword {

double speed1;
public Bee(){
    this.images = Images.bee;
    w = images[0].getIconWidth();
    h = images[0].getIconHeight();
    x=(int)(Math.random()*(420-images[0].getIconWidth()));
    y=-2*images[0].getIconHeight();
    this.step=(Math.random()*4.5+2.5);
    this.speed1=(Math.random()*3.5+0.5);

// this.icon=new ImageIcon("images\bee0.png");

    this.icon=Images.bee[0];
    life = 6;
}
public Bee(double x, double y, double w, double h,double step) {

// super(x, y, w, h);

    this.step=step;
    this.icon = Images.bee[0];
}
@Override
public void move() {
    y+=speed1;
    x+=step;
    if(x>431-images[0].getIconWidth()){
        step = -step;
    }
    if(x<=0){
        step = -step;
    }
}

@Override
public int getAword() {
    return Math.random()>0.5?DOUBLE_FIRE:LIFE;
}

}
7.背景类BG.java

package plane.gzeu;

import javax.swing.*;
import java.awt.*;

//背景类(子类)
//继承FlyingObjesct类,得到FlyingObjesct类的方法及属性
public class BG extends FlyingObjesct {

double y0;
public BG(){
    x = 0;
    y = 0;
    icon = Images.bg;
    w = icon.getIconWidth();
    h = icon.getIconHeight();
    y0 = -h;
    step = 2;

}
public BG(double x, double y, double w, double h,double step) {
    super(x, y, w, h); //重载:调用父类的构造方法,实现方法复用
    this.step = step;
    this.icon = Images.bg; //背景是固定的
}
public void painting(Graphics g){
    icon.paintIcon(null,g,(int)x,(int)y);
    icon.paintIcon(null,g,(int)x,(int)y0);
}
@Override
public void move() {
    y+=step;
    y0+=step;
    if(y>=h){
        y=-h;
    }
    if(y0>=h){
        y0=-h;
    }
}

}
8.爆炸类Bom.java

package plane.gzeu;

import javax.swing.*;

public class Bom extends EnemyPlane{

public Bom(){
    x=(int)(Math.random()*370);
    y=(int)(Math.random()*370);
    this.step = 0.2;
    this.icon = Images.bom[0];
}
public Bom(double x, double y, double w, double h, double speed) {//要重写父类的构造方法。新增一个速度

// super(x, y, w, h);//重载:调用父类的构造方法,实现方法复用

    this.step=speed;
    this.icon=Images.bom[0];
}

}

9.子弹类Bullet.java

package plane.gzeu;

import javax.swing.*;

//继承FlyingObjesct类,得到FlyingObjesct类的方法及属性
public class Bullet extends EnemyPlane {

public Bullet(double x,double y){
    this.icon = Images.bullet;
    w = icon.getIconWidth();
    h = icon.getIconHeight();
    this.x = x;
    this.y = y;
    step = 2;
}
public Bullet(){
    x=(int)(Math.random()*370);
    y=(int)(Math.random()*370);
    this.step = 0.2;
    this.icon = Images.bullet;
}
public Bullet(double x, double y, double w, double h, double step) {

// super(x, y, w, h); //重载:调用父类的构造方法,实现方法复用

    this.step = step;
    this.icon = Images.bullet; //背景是固定的
}

@Override
public void move() {
    y-=step;
}

}
10.三种敌机总类EnemyPlane.java

package plane.gzeu;
public abstract class EnemyPlane extends FlyingObjesct {

@Override
public void move() {
    y+=step;
}

}
11.飞行物的总类(父类)FlyingObjesct.java

package plane.gzeu;

import javax.swing.*;
import java.awt.*;

//飞行物的总类(父类)
public abstract class FlyingObjesct {

public static final int LIVING = 1; //活着
public static final int DEAD = 0; //死亡
public static final int WAIT = -1;  //等待死亡(播放爆炸动画)
//飞机默认是活着的
public int state = LIVING;
//飞机的生命值
public int life = 2;
public double x,y,step,w,h;//step速度
public ImageIcon icon; //图片

// Images images;

public ImageIcon[] images; //数组
public int index = 0;
public ImageIcon [] boms = Images.bom; //存放爆炸效果的图片
//赋初值:构造方法
//快速生成构建方法:快捷键Alt+Insert
public FlyingObjesct(double x, double y, double w, double h) {
    this.x = x;
    this.y = y;
    this.w = w;
    this.h = h;

}
//当飞机击打一次,生命值减一,当生命值为0时,进入死亡状态
public boolean attack(){
    if(life>0){
       life--;
       if(life==0){
           state = DEAD;
       }
       return true;
    }
    return false;
}

//让敌机快速去死

public boolean goDead(){
    if(state==LIVING){
        life = 0;
        state = DEAD;
        return true;
    }else{
        return false;
    }
}
//判断飞机的三种状态
public boolean isLiving(){
    return state==LIVING;  //判断是否活着
}
public boolean isDead(){
    return state==DEAD;  //判断是否死了
}
public boolean isWait(){
    return state==WAIT;  //判断是否等待死亡
}

/*实现动画效果
 * 1.用数组存储动画效果图片
 * 2.初始化数组
 * 3.定义一个计数器,作为切换图片的控制条件
 * 4.写一个方法,实现切换图片的操作
 * */
int i;
public void nextImage(){
    switch (state){
        case LIVING:
            if(images == null) {
                return;
            }
            icon = images[index++/300%images.length]; //0-[数组的长度-1]
            break;
        case DEAD:
            if(boms==null){
                return;
            }
            if(i++/300==boms.length){
                state = WAIT;
                return;
            }
            icon = boms[i++/300];
    }


}

public FlyingObjesct(){}//无参构造

//移动
public abstract void move();

//绘制图形 方法
public void painting(Graphics g){
    nextImage();
    icon.paintIcon(null,g,(int)x,(int)y);
}
//检测敌机是否碰到子弹:判断条件中心距c=H/2+h/2
public boolean bong(FlyingObjesct bullet){
    FlyingObjesct p =this;
    double a = Math.min(p.w,p.h)/2;
    double b = Math.min(bullet.w,bullet.h)/2;
    double x1=p.x+p.w/2;
    double y1=p.y+p.h/2;
    double x2=bullet.x+bullet.w/2;
    double y2=bullet.y+bullet.h/2;
    double c = Math.sqrt((x2-x1)*(x2-x1)+(y2-y1)*(y2-y1));
    return c<=a+b;
}
//清除越界的敌机和子弹条件: y<-h-100 || y>700+100
public boolean outOfBound(){
    if(y<-h-100){
        return true;
    }else if(y>700+100){
        return true;
    }
    return false;
}

}
12.图片类Images.java

package plane.gzeu;

import javax.swing.*;

public class Images {

public static ImageIcon bg;
public static ImageIcon bullet;
public static ImageIcon start;
public static ImageIcon pause;
public static ImageIcon gameover;
public static ImageIcon[] hero;
public static ImageIcon[] bigairplane;
public static ImageIcon[] bee;
public static ImageIcon[] airplane;
public static ImageIcon[] bom;
static {
    airplane = new ImageIcon[2];
    airplane[0] = new ImageIcon("images/airplane0.png");
    airplane[1] = new ImageIcon("images/airplane1.png");
    bigairplane = new ImageIcon[2];
    bigairplane[0] = new ImageIcon("images/bigairplane0.png");
    bigairplane[1] = new ImageIcon("images/bigairplane1.png");
    bee = new ImageIcon[2];
    bee[0] = new ImageIcon("images\\bee0.png");
    bee[1] = new ImageIcon("images\\bee1.png");
    bom = new ImageIcon[4];
    bom[0] = new ImageIcon("images/bom1.png");
    bom[1] = new ImageIcon("images/bom2.png");
    bom[2] = new ImageIcon("images/bom3.png");
    bom[3] = new ImageIcon("images/bom4.png");
    bg = new ImageIcon("images\\background.png");
    bullet = new ImageIcon("images\\bullet.png");
    start = new ImageIcon("images\\start.png");
    pause = new ImageIcon("images\\pause.png");
    gameover = new ImageIcon("images\\gameover.png");
    hero = new ImageIcon[2];
    hero[0] = new ImageIcon("images\\hero0.png");
    hero[1] = new ImageIcon("images\\hero1.png");

}
//测试图片是否传过来了
public static void main(String[] args) {
    System.out.println(start.getImageLoadStatus()); //如果输出8那图片传过来了,输出其他数字有问题
    System.out.println(bg.getImageLoadStatus());
    System.out.println(bom[0].getImageLoadStatus());
    System.out.println(bee[1].getImageLoadStatus());
    System.out.println(airplane[1].getImageLoadStatus());

}

}
13.获得奖励的接口Aword.java

package plane.gzeu;
//获得奖励的接口
public interface Aword {

int DOUBLE_FIRE = 1; //第一种奖励,双倍火力
int LIFE = 2; //加生命值

int getAword(); //获得奖励的方法
}
14.获得分数的接口Enemy.java

package plane.gzeu;
//获得分数的接口
public interface Enemy { //加分
// int a = 5;//都是静态常量
// public abstract void add(); //都是抽象方法

public int getScore(); //获得分数的方法

}
运行界面:

开始界面

3002c9ee6dccf93dd52eee6cfd9b70be_a4ef0c22e2f04f6cba59cb5096c97c04.png

存活界面:
fd7f34f673460703aca097397b463a16_1dc25c906d494edf9f9c2699d609ced6.png

暂停界面
d2e8286c388e5ac3db8a213b45ba2fe3_fca47af31f004a58a70596d6f772d2e9.png

结束界面
17865f6aebe06c0d679f2c92634956a6_ca480850cb354ec69ccfcf1aed25cfad.png

http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275257
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275258
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275260
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275281
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275282
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275283
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275260
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275284
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275285
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275287
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275286
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275288
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275289
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275290
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275291
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275292
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275293
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275294
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275295
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275297
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275298
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275299
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275300
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275301
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275302
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275303
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275304
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275305
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275306
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275307
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275308
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275310
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275309
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275311
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275312
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275313
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275314
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275315
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275316
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275317
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275318
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275319
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275320
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275321
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275322
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275323
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275324
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275325
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275326
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275327
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275328
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275329
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275330
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275331
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275332
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275333
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275334
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275335
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275336
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275337
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275338
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275339
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275340
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275341
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275342
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275343
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275344
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275345
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275346
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275347
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275348
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275349
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275350
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275351
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275352
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275353
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275354
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275355
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275356
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275357
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275358
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275359
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275360
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275361
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275362
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275363
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275364
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275365
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275366
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275367
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275368
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275369
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275370
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275371
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275372
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275373
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275374
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275375
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275376
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275377
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275378
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275379
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275380
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275381
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275382
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275383
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275384
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275385
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275386
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275387
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275388
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275389
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275390
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275391
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275392
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275393
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275394
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275395
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275396
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275397
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275398
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275399
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275400
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275401
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275402
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275403
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275404
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275405
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275406
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275407
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275408
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275409
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275410
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275411
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275412
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275413
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275414
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275415
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275416
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275417
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275418
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275419
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275420
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275421
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275422
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275423
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275424
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275425
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275426
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275427
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275428
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275429
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275430
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275431
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275432
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275433
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275434
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275435
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275436
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275437
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275438
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275439
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275440
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275442
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275443
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275445
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275446
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275448
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275449
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275451
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275452
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275455
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275456
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275458
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275460
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275461
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275462
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275464
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275465
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275468
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275469
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275470
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275471
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275472
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275473
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275474
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275475
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275476
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275477
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275478
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275479
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275480
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275481
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275482
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275483
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275484
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275485
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275487
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275488
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275489
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275490
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275491
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275493
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275494
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275498
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275499
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275501
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275502
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275503
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275504
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275505
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275506
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275507
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275508
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275509
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275510
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275511
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275512
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275513
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275514
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275515
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275516
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275517
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275518
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275519
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275520
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275521
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275522
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275523
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275524
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275525
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275526
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275527
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275528
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275529
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275530
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275531
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275532
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275533
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275534
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275535
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275536
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275537
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275538
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275539
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275540
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275541
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275542
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275543
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275544
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275545
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275546
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275547
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275548
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275549
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275550
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275551
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275552
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275553
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275554
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275555
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275556
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275557
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275558
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275559
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275560
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275561
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275562
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275563
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275564
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275565
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275566
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275567
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275568
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275569
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275570
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275571
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275572
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275573
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275574
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275575
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275576
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275577
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275578
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275579
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275580
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275581
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275582
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275583
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275584
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275585
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275586
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275587
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275588
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275589
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275590
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275591
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275592
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275593
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275594
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275595
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275596
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275597
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275598
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275599
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275600
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275601
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275602
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275603
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275604
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275605
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275606
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275607
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275608
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275609
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275610
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275611
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275612
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275613
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275614
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275615
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275616
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275617
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275618
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275619
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275620
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275621
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275622
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275623
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275624
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275625
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275626
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275627
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275628
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275629
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275630
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275631
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275632
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275633
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275634
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275635
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275636
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275637
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275638
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275639
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275640
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275641
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275642
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275643
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275644
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275645
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275646
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275647
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275648
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275649
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275650
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275651
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275652
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275653
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275654
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275655
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275656
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275657
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275658
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275659
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275660
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275661
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275662
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275663
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275664
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275665
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275666
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275667
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275668
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275669
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275670
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275671
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275672
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275673
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275674
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275675
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275676
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275677
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275678
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275679
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275680
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275681
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275682
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275683
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275684
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275685
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275686
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275687
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275688
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275689
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275690
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275691
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275692
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275693
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275694
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275695
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275696
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275697
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275698
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275699
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275700
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275701
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275702
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275703
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275704
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275705
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275706
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275707
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275708
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275709
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275710
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275711
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275712
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275713
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275714
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275715
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275716
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275717
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275718
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275719
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275720
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275721
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275722
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275723
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275724
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275725
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275726
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275727
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275728
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275729
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275730
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275731
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275732
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275733
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275734
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275735
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275736
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275737
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275738
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275739
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275740
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275741
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275742
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275743
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275744
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275745
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275746
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275747
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275748
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275749
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275750
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275751
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275752
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275753
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275754
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275755
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275756
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275757
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275758
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275759
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275760
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275761
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275762
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275763
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275764
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275765
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275766
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275767
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275768
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275769
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275770
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275771
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275772
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275773
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275774
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275775
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275776
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275777
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275778
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275779
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275780
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275781
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275782
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275783
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275784
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275785
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275786
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275787
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275788
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275789
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275790
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275791
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275792
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275793
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275794
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275795
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275796
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275797
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275798
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275799
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275800
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275801
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275802
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275803
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275804
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275805
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275806
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275807
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275808
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275809
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275810
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275811
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275813
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275814
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275815
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275816
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275817
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275818
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275819
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275820
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275821
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275822
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275823
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275824
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275825
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275826
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275827
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275828
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275829
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275830
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275831
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275832
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275833
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275834
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275837
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275838
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275839
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275840
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275841
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275842
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275843
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275844
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275845
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275846
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275847
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275848
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275849
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275850
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275851
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275852
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275853
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275854
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275855
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275856
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275857
http://bbs.cnpingpang.com/forum.php?mod=viewthread&tid=1275858


唠叨的甘蔗
1 声望0 粉丝