if(MH<=0){
reset();
cout<<MN<<" 战败!"<<endl;//我方胜利
Sleep(1500);
cout<<"你胜利了!"<<endl;
Sleep(1000);
sc(2);
cout<<"获得经验 "<<xp<<" 点"<<endl;
sc(7);
experience+=xp;
Sleep(500);
int levelnow=level;
if(levelup(experience)>0) cout<<"你升级了!"<<endl;
Sleep(500);
cout<<"当前等级:"<<level<<endl;
dead=true;
Sleep(500);
if(Mmoney>0) cout<<"你获得 "<<Mmoney<<" 颗绿宝石"<<endl;
money+=Mmoney;
getch();
system("cls");
return;
}
if(!healthy&&health>=maxhealth*0.7&&skill[12]>0&&sk[12].skilltake==1){
cout<<"被动技能 健康 触发:增加 "<<1+skill[12]*3<<" 防御!"<<endl;
defense+=1+skill[12]*3;
healthy=true;
Sleep(1000);
}
if(healthy&&health<maxhealth*0.7&&skill[12]>0&&sk[12].skilltake==1){
defense-=1+skill[12]*3;
healthy=false;
}
/******************敌人回合*****************/
sc(4);
cout<<"你的血量 ("<<health<<"/"<<maxhealth<<") 敌人血量:"<<MH<<endl;
sc(1);
cout<<"魔力:"<<magic<<"/"<<maxmagic<<endl;
sc(7);
cout<<"攻击:"<<attack<<endl;
cout<<"防御:"<<defense<<endl;
cout<<"速度:"<<speed<<endl;
cout<<"当前你和敌人的距离为";
if(enemyskill[46]){
sc(6);cout<<"??????";sc(7);
}else cout<<dis;
cout<<endl<<endl<<MN<<" 的回合!"<<endl;
if(frozen>0){
heavy_attack=0;
sc(3);
frozen--;
cout<<"敌人被冰冻,无法行动!"<<endl;
int damage=1+skill[33]*2;
cout<<"敌人受到了 "<<damage<<" 点伤害!"<<endl;
MH-=damage;
cout<<"敌人还剩 "<<MH<<" 点血量!"<<endl;
sc(7);
getch();
system("cls");
continue;
}
for(int i=100;i>1;i--){//技能
if(enemyskilluse==1) break;
if(enemyskillcold[i]<=0&&enemyskill[i]>=1){
switch(i){
case 2://重击
if(dis<=Adis){
enemyskillcold[2]=skillcold[2]+1;
cout<<MN<<" 使用了 "<<skillname[2]<<endl;
Sleep(1000);
cout<<MN<<"对你重重一击!"<<endl;
Damage(MN,MH,defense,MA+1+enemyskill[2],0,1,1,0,0);
getch();
enemyskilluse=1;
}
break;
case 4://穿云箭
if(dis<=10){
enemyskillcold[4]=skillcold[4]+1;
cout<<MN<<" 使用了 "<<skillname[4]<<endl;
Sleep(1000);
cout<<MN<<" 射出迅猛一箭!"<<endl;
Damage(MN,MH,0,3+enemyskill[4]*2,0,0,1,1,0);
getch();
enemyskilluse=1;
}
break;
case 33://冰冻
enemyskillcold[33]=skillcold[33]+1;
cout<<MN<<" 使用了 "<<skillname[33]<<endl;
Sleep(1000);
enemyskillcold[33]++;//it's too op,so i nerf it
sc(3);
cout<<MN<<" 使用极寒之力将你冰冻!"<<endl;
sc(7);
player_frozen=floor(2+enemyskill[33]*0.6);
Sleep(1000);
getch();
enemyskilluse=1;
break;
//怪物独有的技能
case 41://减速箭
if(dis<=10){
enemyskillcold[41]=skillcold[41]+1;
cout<<MN<<" 使用了 "<<skillname[41]<<endl;
Sleep(1000);
cout<<MN<<" 射出了一支减速箭!"<<endl;
int damage=3+enemyskill[41];
player_slowdown=3;
speed-=enemyskill[41];
cout<<"你被减速了!"<<endl; //这玩意原来是真伤,没改代码我都不记得
Damage(MN,MH,0,3+enemyskill[41],0,0,1,1,0);
getch();
enemyskilluse=1;
}
break;
case 42://巨力重拳
if(heavy_attack==2){//准备就绪!
enemyskillcold[42]=skillcold[42]+1;
cout<<MN<<" 使用了 "<<skillname[42]<<endl;
Sleep(1000);
if(dis<=4){//处于攻击范围内
cout<<MN<<"抬起巨大的双拳,用尽全力对着你重重一击!!!"<<endl;
getch();
cout<<"巨大的蛮力垂直对你砸下!!!"<<endl;
Sleep(1000);
getch();
Damage(MN,MH,defense,MA*2,0,0,1,0,0);//双倍伤害 不暴击 不浮动
getch();
heavy_attack=0;
enemyskilluse=1;
}else{//空拳
enemyskillcold[42]=skillcold[42]+1;
cout<<MN<<" 使用了 "<<skillname[42]<<endl;
Sleep(1000);
cout<<MN<<"抬起巨大的双拳,用尽全力对着面前重重一击!!!"<<endl;
getch();
cout<<"巨大的蛮力垂直砸下!!!"<<endl;
Sleep(1000);
getch();
cout<<"然而,"<<MN<<"并没有命中你。"<<endl;
Sleep(1000);
getch();
heavy_attack=0;
enemyskilluse=1;
}
}//蓄力2
if(heavy_attack==1){
enemyskillcold[42]=0;
heavy_attack=2;
cout<<MN<<" 似乎已经准备好了什么..."<<endl;
Sleep(1000);
cout<<MN<<" 周围充满了狂躁的力量..."<<endl;
Sleep(1000);
getch();
enemyskilluse=1;
}//蓄力1
if(dis<=Adis+1&&heavy_attack==0&&enemyskillcold[42]==0){
enemyskillcold[42]=0;
heavy_attack=1;
cout<<MN<<" 似乎在准备着什么..."<<endl;
Sleep(1000);
cout<<MN<<" 周围似乎充满了力量..."<<endl;
Sleep(1000);
getch();
enemyskilluse=1;
}
break;
case 44://火球
if(dis<=10){
enemyskillcold[44]=skillcold[44]+1;
cout<<MN<<" 使用了 "<<skillname[44]<<endl;
Sleep(1000);
cout<<MN<<" 发射了火球!"<<endl;
int damage=1+enemyskill[44];
player_burn++;
player_burntime=3;
cout<<"你着火了!"<<endl;
Damage(MN,MH,0,1+enemyskill[44],0,0,1,1,0);
getch();
enemyskilluse=1;
}
break;
}
}
}
if(health<=0){
if(blessing){//祝福,复活 保留1/4血
cout<<"Notch之祝福生效!"<<endl;
Sleep(1500);
health=0;
health+=maxhealth/4;
blessing=false;
cout<<"你回复25%生命值,继续战斗!"<<endl;
getch();
system("cls");
}else{
reset();
cout<<"你死了!"<<endl;
place="村庄";
Sleep(3000);
health=2;
system("cls");
return;
}
}
if(enemyskilluse==1){
enemyskilluse=0;
continue;
}
if(Adis<5){//近战怪物AI
if(dis<=Adis){
switch(Mrand){
case 101:
cout<<MN<<"抬起巨大的拳头砸向你!"<<endl;//丛林守护者 特殊提示
break;
case 102:
cout<<MN<<"伸出双手向你攻来!"<<endl;//巨型雪怪 特殊提示
break;
case 103:
cout<<"一片黄沙聚为一体,向你袭来!"<<endl;//沙暴之神 特殊提示
break;
default:
cout<<MN<<" 对 "<<name<<" 进行攻击!"<<endl;
break;
}
Sleep(500);
Damage(MN,MH,MD,MA,0,1,1,0,0);//怪物一般不暴击
//沙暴之神
if(Mrand==103&&rand()%3){//33%在攻击后再次移动
if(rand()%2) goto sand1;
else goto sand2;
}
system("cls");
}else{
sand1:
int s=MS;
if(Mrand==103) MS=1+rand()%MS;
if(dis>=MS) dis-=MS;
else dis=0;
MS=s;
switch(Mrand){
case 101:
cout<<MN<<" 拖着沉重的身体,向你袭来..."<<endl; //丛林守护者 特殊提示
break;
case 102:
cout<<MN<<"来势汹汹的冲来!"<<endl;//巨型雪怪 特殊提示
break;
case 103:
cout<<"一阵风沙吹过..."<<endl;//沙暴之神 特殊提示
getch();
cout<<"沙暴之神的位置改变了!"<<endl;
break;
default:
cout<<MN<<" 向 "<<name<<" 逼近了!"<<endl;
break;
}
Sleep(500);
cout<<"当前你和敌人的距离为";
if(enemyskill[46]){
sc(6);cout<<"??????"<<endl;sc(7);
if(rand()%2){
sc(6);
cout<<"你的直觉告诉你,敌人似乎接近了你..."<<endl;//提示
sc(2);
}
}else cout<<dis<<endl;
getch();
system("cls");
}
}else{//远程怪物AI
if(dis<=Adis/3&&back==true){//与玩家距离小于1/3攻击距离,后退
sand2:
int s=MS;
if(Mrand==103) MS=1+rand()%(MS-1); //随机移动
dis+=MS;
MS=s;
if(Mrand==103){
cout<<"一阵风沙吹过..."<<endl;//沙暴之神 特殊提示
getch();
cout<<"沙暴之神的位置改变了!"<<endl;
}else cout<<MN<<" 后退了!"<<endl;
Sleep(500);
cout<<"当前你和敌人的距离为";
if(enemyskill[46]){
sc(6);cout<<"??????"<<endl;sc(7);
}else cout<<dis<<endl;
getch();
system("cls");
back=false;
}else{
back=true;
if(dis>Adis){//距离过远,前进
if(dis-=MS>=0) dis-=MS;
else dis=0;
cout<<MN<<" 向 "<<name<<" 逼近了!"<<endl;
Sleep(500);
cout<<"当前你和敌人的距离为";
if(enemyskill[46]){
sc(6);cout<<"??????"<<endl;sc(7);
}else cout<<dis<<endl;
getch();
system("cls");
}else{//与玩家距离适合,攻击
cout<<MN<<" 对 "<<name<<" 进行攻击!"<<endl;
Sleep(500);
Damage(MN,MH,MD,MA,0,1,1,1,0);//怪物一般不暴击
//u1s1这个typ改不改没啥区别...
system("cls");
}
}
}
if(health<=0){
if(blessing){//祝福,复活 保留1/4血
cout<<"Notch之祝福生效!"<<endl;
Sleep(1500);
health=0;
health+=maxhealth/4;
blessing=false;
cout<<"你回复25%生命值,继续战斗!"<<endl;
getch();
system("cls");
}else{
reset();
cout<<"你死了!"<<endl;
place="村庄";
Sleep(3000);
health=2;
system("cls");
return;
}
}
if(!healthy&&health>=maxhealth*0.7&&skill[12]>0&&sk[12].skilltake==1){
cout<<"被动技能 健康 触发:增加 "<<1+skill[12]*3<<" 防御!"<<endl;
defense+=1+skill[12]*3;
healthy=true;
Sleep(200);
}
if(healthy&&health<maxhealth*0.7&&skill[12]>0&&sk[12].skilltake==1){
defense-=1+skill[12]*3;
healthy=false;
}
}
return;
}
void enemyattack(){//入侵
if(undeadattack){
cout<<"你看见又有一些亡灵生物在攻击村庄,不过有铁傀儡的保护,这些小批的亡灵只是送死。"<<endl;
getch();
cout<<"这次似乎亡灵来的数量比较多...等等!"<<endl;
getch();
cout<<"你定睛一看,城墙外,是黑压压的亡灵大军..."<<endl;
getch();
system("cls");
Sleep(1000);
cout<<"潮水般的亡灵疯狂的冲撞着城墙,很快城墙便倒塌了..."<<endl;
getch();
cout<<"亡灵大军入侵!!!"<<endl;
getch();
if(attacklevel>0) cout<<"(入侵等级:"<<attacklevel<<")"<<endl;
getch();
cout<<"一只僵尸向你扑来!"<<endl;
getch();
fight("僵尸",20+4*attacklevel,3,0,0+5*attacklevel,2,5,2,100+50*attacklevel,1);
if(dead){
dead=false;
credit+=2;
cout<<"你击败了僵尸后,一只精英僵尸向你冲来!!"<<endl;
getch();
fight("僵尸",20+5*attacklevel,4+attacklevel,0,5+5*attacklevel,3,5,2,200+50*attacklevel,2+attacklevel);
if(dead){
dead=false;
credit+=2;
cout<<"你好不容易击杀了僵尸后,远处射来一根暗箭!"<<endl;
getch();
fight("骷髅",20+3*attacklevel,3+1*attacklevel,0,-5+3*attacklevel,1,12,8,250+100*attacklevel,3+1*attacklevel);
if(dead){
credit+=5;
Sleep(2000);
cout<<"几根骨头落下,骷髅落败。"<<endl;
getch();
cout<<"你原地休息了一会,恢复了 10 点生命值!"<<endl;
health+=min(10,maxhealth-health);
getch();
cout<<"但正当你休息时,一把锐利的刀刺向了你的喉咙----"<<endl;
getch();
system("cls");
Sleep(1000);
cout<<"Blackbone."<<endl;
Sleep(1000);
cout<<"“杀了我众多亡灵同胞,吾必将血债血偿!”"<<endl;
getch();
cout<<"顷刻间,血骨之刃便来到了你的面前!"<<endl;
getch();
fight("Blackbone之影",30+10*attacklevel,8+attacklevel,0,12+6*attacklevel,4,10,3,1000+150*attacklevel,5+2*attacklevel);
if(dead){
credit+=10;
cout<<"你将剑插入Blackbone的心脏中,Blackbone消失了..."<<endl;
getch();
cout<<"刚刚你击杀的,只不过是Blackbone的分身!"<<endl;
Sleep(1000);
cout<<"但亡灵大军停止了进攻,他们已经处于劣势。"<<endl;
getch();
cout<<"你守护了村庄!"<<endl;
getch();
cout<<"你获得奖励: 经验 500 点! 绿宝石 15 颗!"<<endl;
experience+=500;
int levelnow=level;
if(levelup(experience)>0)cout<<"你升了 "<<level-levelnow<<" 级!";
money+=15;
Sleep(1000);
cout<<"你回复了所有生命值。"<<endl;
getch();
health=maxhealth;
undeadattack=false;
Sleep(2000);
system("cls");
}else{
cout<<"你倒在地上,渐渐失去了知觉..."<<endl;
Sleep(2000);
system("cls");
Sleep(2000);
cout<<"当你醒来时,你正躺在村庄旅馆里..."<<endl;
Sleep(1000);
cout<<"你与亡灵英勇作战,店主为你恢复了生命。"<<endl;
health=maxhealth;
Sleep(2000);
undeadattack=false;
return;
}
}else{
cout<<"你倒在地上,渐渐失去了知觉..."<<endl;
Sleep(2000);
system("cls");
Sleep(2000);
cout<<"当你醒来时,你正躺在村庄旅馆里..."<<endl;
Sleep(1000);
cout<<"你与亡灵英勇作战,店主为你恢复了生命。"<<endl;
health=maxhealth;
Sleep(2000);
undeadattack=false;
return;
}
}else{
cout<<"你倒在地上,渐渐失去了知觉..."<<endl;
Sleep(2000);
system("cls");
Sleep(2000);
cout<<"当你醒来时,你的绿宝石已散落不见..."<<endl;
if(money<5){
cout<<"你失去了所有绿宝石!"<<endl;
money=0;
}else{
cout<<"你失去了 5 颗绿宝石!"<<endl;
money-=5;
}
cout<<"你还有 "<<money<<" 颗绿宝石..."<<endl;
Sleep(2000);
undeadattack=false;
return;
}
}else{
cout<<"你倒在地上,渐渐失去了知觉..."<<endl;
Sleep(2000);
system("cls");
Sleep(2000);
cout<<"当你醒来时,你的绿宝石已散落不见..."<<endl;
if(money<10){
cout<<"你失去了所有绿宝石!"<<endl;
money=0;
}else{
cout<<"你失去了 10 颗绿宝石!"<<endl;
money-=10;
}
cout<<"你还有 "<<money<<" 颗绿宝石..."<<endl;
Sleep(2000);
undeadattack=false;
return;
}
}
return;
}
struct sell{
string type;
int num,amount,money;
}s[1000];
void shop_sell(int number,string type,int num,int amount,int money){
if(type=="sell") s[number].type="sell";
else{
if(type=="arrow_sell") s[number].type="arrow_sell";
else{
s[number].type="sb";//?
s[number].num=num;
s[number].amount=item[num].sell_num;
s[number].money=item[num].sell_price;
return;
}
}
s[number].amount=amount;
s[number].num=num;
s[number].money=money;
return;
}
void shop_clear(){//清空商店物品
for(int i=1;i<=114;i++){
s[i].type="";
s[i].amount=0;
s[i].money=0;
s[i].num=0;
}
return;
}
void shop(string place){//商店
if(place=="洞穴"){
cout<<"然鹅此处没有商店!"<<endl;
getch();
return;
}
if(place=="沙漠"){
cout<<"然鹅此处没有商店!"<<endl;
getch();
return;
}
if(place=="地狱"){
cout<<"然鹅此处没有商店!"<<endl;
getch();
return;
}
if(place=="下界要塞"){
cout<<"然鹅此处没有商店!"<<endl;
getch();
return;
}
if(place=="末地"){
cout<<"然鹅此处没有商店!"<<endl;
getch();
return;
}
int a1=1+rand()%4;
int a2=1+rand()%2;
int b2=1+rand()%2;
int a3=1+rand()%2;
int b3=1+rand()%2;
int a4=1+rand()%2;
while(1){
shop_clear();
system("cls");
if(place=="流浪商人"){
cout<<"我是流浪商人...我这里有你在别的地方见不到的好东西。你可以在我这买些东西。"<<endl;
cout<<"——不定时更换商品。"<<endl;
}else{
cout<<"欢迎来到"<<place<<"商店!"<<endl;
cout<<"请问您要买什么?"<<endl;
}
cout<<"(当前你有"<<money<<"个绿宝石)"<<endl;
cout<<"0,离开 1,武器 2,工具 3,药水 4,其他 5,出售"<<endl;
cin>>choose;
switch(choose){
case 0:
return;
break;
case 1:
shop_sell(1,"sell",11,1,2);
shop_sell(2,"sell",15,1,6);
if(place=="流浪商人"){
shop_sell(1,"sell",105,1,16);
if(a1==1) shop_sell(2,"sell",108,1,10);
if(a1==2) shop_sell(2,"sell",109,1,12);
if(a1==3) shop_sell(2,"sell",110,1,12);
if(a1==4) shop_sell(2,"sell",111,1,10);
}
for(int i=1;i<=100;i++){
if(s[i].num!=0){
cout<<"编号"<<i<<" "<<item[s[i].num].itemname<<"x"<<s[i].amount<<" -价格 "<<s[i].money<<" 绿宝石 \n";
}else break;
}
cout<<"输入商品编号购买物品!"<<endl;
cin>>choose;
if(choose==0){
continue;
}
if(s[choose].num==0){
cout<<"请勿乱输!"<<endl;
getch();
}else{
if(money<s[choose].money){
cout<<"你的绿宝石不够!"<<endl;
getch();
system("cls");
}else{
cout<<"购买成功!"<<endl;
money-=s[choose].money;
cout<<"你还剩 "<<money<<" 个绿宝石"<<endl;
bag[s[choose].num]+=s[choose].amount;
getch();
system("cls");
}
}
break;
case 2:
shop_sell(1,"sell",12,1,2);
shop_sell(2,"sell",13,1,6);
if(place=="流浪商人"){
if(a2==1) shop_sell(1,"sell",23,1,4);
if(a2==2) shop_sell(1,"sell",106,1,8);
if(b2==1) shop_sell(2,"sell",24,1,6);
if(b2==2) shop_sell(2,"sell",107,1,12);
}
for(int i=1;i<=100;i++){
if(s[i].num!=0){
cout<<"编号"<<i<<" "<<item[s[i].num].itemname<<"x"<<s[i].amount<<" -价格 "<<s[i].money<<" 绿宝石 \n";
}else break;
}
cout<<"输入商品编号购买物品!"<<endl;
cin>>choose;
if(choose==0){
continue;
}
if(s[choose].num==0){
cout<<"请勿乱输!"<<endl;
getch();
}else{
if(money<s[choose].money){
cout<<"你的绿宝石不够!"<<endl;
getch();
system("cls");
}else{
cout<<"购买成功!"<<endl;
money-=s[choose].money;
cout<<"你还剩 "<<money<<" 个绿宝石"<<endl;
bag[s[choose].num]+=s[choose].amount;
getch();
system("cls");
}
}
break;
case 3:
shop_sell(1,"sell",1001,1,5);
shop_sell(2,"sell",1002,1,5);
if(place=="流浪商人"){
if(a3==1) shop_sell(1,"sell",1001,1,4);
if(a3==2) shop_sell(1,"sell",1002,1,4);
if(b3==1) shop_sell(2,"sell",1009,1,6);
if(b3==2) shop_sell(2,"sell",1010,1,6);
}
for(int i=1;i<=100;i++){
if(s[i].num!=0){
cout<<"编号"<<i<<" "<<posionname[s[i].num-1000]<<"x"<<s[i].amount<<" -价格 "<<s[i].money<<" 绿宝石 \n";
}else break;
}
cout<<"输入商品编号购买物品!"<<endl;
cin>>choose;
if(s[choose].num==0){
cout<<"请勿乱输!"<<endl;
getch();
}else{
if(money<s[choose].money){
cout<<"你的绿宝石不够!"<<endl;
getch();
system("cls");
}else{
cout<<"购买成功!"<<endl;
money-=s[choose].money;
cout<<"你还剩 "<<money<<" 个绿宝石"<<endl;
bag[s[choose].num]+=s[choose].amount;
getch();
system("cls");
}
}
break;
case 4:
if(place=="流浪商人"){
if(a4==1) shop_sell(1,"sell",67,1,25);
if(a4==2) shop_sell(1,"sell",68,1,25);
}
if(place=="村庄"){
shop_sell(1,"sell",66,1,25);
shop_sell(2,"sell",75,1,25);
shop_sell(3,"sell",19,4,1);
shop_sell(4,"arrow_sell",1,4,2);
}
if(place=="平原"){
shop_sell(1,"sell",69,1,30);
shop_sell(2,"sell",70,1,25);
}
if(place=="森林"){
shop_sell(1,"sell",71,1,25);
}
if(place=="丛林"){
shop_sell(1,"sell",73,1,20);
shop_sell(2,"sell",76,1,25);
}
if(place=="雪地"){
shop_sell(1,"sell",77,1,40);
}
for(int i=1;i<=100;i++){
if(s[i].num!=0){
if(s[i].type=="arrow_sell") cout<<"编号"<<i<<" "<<arrowname[s[i].num]<<"x"<<s[i].amount<<" -价格 "<<s[i].money<<" 绿宝石 \n";
else cout<<"编号"<<i<<" "<<item[s[i].num].itemname<<" -价格 "<<s[i].money<<" 绿宝石 \n";
}else break;
}
cout<<"输入商品编号购买物品!"<<endl;
cin>>choose;
if(choose==0){
continue;
}
if(s[choose].num==0){
cout<<"请勿乱输!"<<endl;
getch();
}else{
if(money<s[choose].money){
cout<<"你的绿宝石不够!"<<endl;
getch();
system("cls");
}else{
cout<<"购买成功!"<<endl;
money-=s[choose].money;
cout<<"你还剩 "<<money<<" 个绿宝石"<<endl;
if(s[choose].type=="arrow_sell") arrow[s[choose].num]+=s[choose].amount;
else bag[s[choose].num]+=s[choose].amount;
getch();
system("cls");
}
}
break;
case 5:
for(int i=1;i<=100;i++){
if(i>=16&&level<3){
sc(2);
cout<<"\n达到 3 级以解锁新的物品!\n"<<endl;
break;
}
if(i>=32&&level<5){
sc(2);
cout<<"\n达到 5 级以解锁新的物品!\n"<<endl;
break;
}
if(i>=48&&level<8){
sc(2);
cout<<"\n达到 8 级以解锁新的物品!\n"<<endl;
break;
}
if(i>=64&&level<10){
sc(2);
cout<<"\n达到 10 级以解锁新的物品\n"<<endl;
break;
}
if(item[i].sell_num>0) shop_sell(i,"1",i,0,0);
}
sc(7);
cout<<"输入商品编号出售物品!\n\n提升你的等级以解锁更多可出售物品。\n"<<endl;
for(int i=1;i<=100;i++){
if(s[i].num!=0){
cout<<"编号 "<<i<<" "<<item[s[i].num].itemname<<" -出售 "<<s[i].amount<<" 个 价格 "<<s[i].money<<" 绿宝石 \n";
}
}
cin>>choose;
int buy=choose;
if(choose==0){
continue;
}
if(s[choose].num==0){
cout<<"请勿乱输!"<<endl;
getch();
}else{
if(bag[s[choose].num]<s[choose].amount){
cout<<"你的"<<item[s[choose].num].itemname<<"不够!"<<endl;
getch();
system("cls");
}else{
if(bag[s[choose].num]>=s[choose].amount*2){
cout<<"你要出售几";
sc(4);
cout<<"份?"<<endl;
sc(7);
cin>>choose;
if(bag[s[buy].num]<s[buy].amount*choose){
cout<<"你的"<<item[s[buy].num].itemname<<"不够!"<<endl;
getch();
system("cls");
}else{
cout<<"出售成功!"<<endl;
money+=s[buy].money*choose;
cout<<"你现在有 "<<money<<" 个绿宝石"<<endl;
bag[s[buy].num]-=s[buy].amount*choose;
getch();
system("cls");
}
}else{
cout<<"出售成功!"<<endl;
money+=s[choose].money;
cout<<"你现在有 "<<money<<" 个绿宝石"<<endl;
bag[s[choose].num]-=s[choose].amount;
getch();
system("cls");
}
}
}
break;
}
}
return;
}
void dungeon(string place){//副本
string map[100];
int x,y;
system("cls");
if(place=="丛林神庙"){
time_now=time(0);
if(time_now-time_last[1]<1800){//又改了!我好良心!
//应hjq要求。
cout<<"副本冷却中!"<<endl;
//cout<<time_now<<" "<<time_last[1]<<endl;
if(1800-(time_now-time_last[1])>=60) cout<<"请等待 "<<30-(time_now-time_last[1])/60<<" 分钟后再进入!"<<endl;
else cout<<"请等待 "<<1800-(time_now-time_last[1])<<" 秒后再进入!"<<endl;
getch();
return;
}else{
cout<<"你确定要进入丛林神庙?!"<<endl;
cout<<"\n0,返回 1,确定"<<endl;
cin>>choose;
if(choose==0) return;
else{
time_last[1]=time(0);
cout<<"选择难度:"<<endl;
cout<<"1,简单 ";
if(hard_max[1]>=2)cout<<"2,普通 ";//所以什么时候才会有...?
if(hard_max[1]>=3)cout<<"3,困难 ";
if(hard_max[1]>=4)cout<<"4,地狱 ";
if(hard_max[1]>=5)cout<<"5,炼狱";
cout<<endl;
cin>>hard;
switch(hard){
case 1:
map[0]="#####";
map[1]="##2##";
map[2]="#31##";
map[3]="##1##";
map[4]="##11#";
map[5]="##0##";
cout<<"祝你好运..."<<endl;
x=4,y=2;
break;
case 2:
if(hard_max[1]<2) return;
map[0]="#####";
map[1]="##2##";
map[2]="#11##";
map[3]="##1##";
map[4]="##13#";
map[5]="##0##";
cout<<"祝你好运..."<<endl;
x=4,y=2;
break;
case 3:
if(hard_max[1]<3) return;
map[0]="#####";
map[1]="#####";
map[2]="##2##";
map[3]="311##";
map[4]="##1##";
map[5]="##113";
map[6]="##1##";
map[7]="##0##";
cout<<"当心危险..."<<endl;
x=5,y=2;
break;
case 4:
if(hard_max[1]<4) return;
map[0]="#####";
map[1]="##2##";
map[2]="311##";
map[3]="##1##";
map[4]="##113";
map[5]="#11##";
map[6]="##1##";
map[7]="##0##";
cout<<"感受地狱吧..."<<endl;
x=6,y=2;
break;
case 5:
if(hard_max[1]<5) return;
map[0]="#####";
map[1]="##2##";
map[2]="311##";
map[3]="##1##";
map[4]="##113";
map[5]="#11##";
map[6]="##3##";
map[7]="##1##";
map[8]="##1##";
map[9]="##0##";
cout<<"你会后悔的..."<<endl;
x=8,y=2;
break;
default:
return;
break;
}
getch();
say("你缓缓走进丛林神庙,等待你的会是什么呢...",50);
Sleep(1000);
while(1){
reset();//重置
system("cls");
levelup(experience);
if(map[x][y]=='1'){
cout<<"你走进内部,发现了一些怪物!"<<endl;
getch();
switch(1+rand()%3){
case 1:
cout<<"你遇见了远古僵尸!"<<endl;
getch();
switch(hard){
case 1:
fight("远古僵尸",20,4+rand()%2,0,6+rand()%5,3,4+rand()%3,2,200,1);
drop("远古僵尸1");
break;
case 2:
fight("远古僵尸",24,5+rand()%2,0,10+rand()%6,3,4+rand()%3,2,300,2);
drop("远古僵尸2");
break;
case 3:
fight("远古僵尸",30,7+rand()%2,0,18+rand()%6,4,4+rand()%3,2,450,3);
drop("远古僵尸3");
break;
case 4:
fight("远古僵尸",34+rand()%7,8+rand()%4,0,24+rand()%6,4,5+rand()%2,2,700,5);
drop("远古僵尸4");
break;
case 5:
fight("远古僵尸",48+rand()%9,10+rand()%3,0,30+rand()%10,5,6+rand()%3,3,1000,8);
drop("远古僵尸5");
break;
}
if(!dead){
say("你的意识渐渐模糊...",100);
getch();
return;
}else{
map[x][y]='0';
if(maxhealth-health>0){
cout<<"你原地休息片刻,恢复了10%的生命!"<<endl;
health+=min(maxhealth/10,maxhealth-health);
getch();
}
}
break;
case 2:
cout<<"你遇见了远古骷髅!"<<endl;
getch();
switch(hard){
case 1:
fight("远古骷髅",20,3+rand()%2,0,0+rand()%5,2,7+rand()%5,8,300,2);
drop("远古骷髅1");
break;
case 2:
fight("远古骷髅",20+rand()%3,4+rand()%2,0,4+rand()%5,2,8+rand()%5,9,450,3);
drop("远古骷髅2");
break;
case 3:
fight("远古骷髅",26+rand()%5,6+rand()%2,0,12+rand()%6,3,10+rand()%4,10,700,5);
drop("远古骷髅3");
break;
case 4:
fight("远古骷髅",30+rand()%8,8+rand()%2,0,18+rand()%6,3,12+rand()%3,10,900,7);
drop("远古骷髅4");
break;
case 5:
fight("远古骷髅",42+rand()%9,10+rand()%2,0,22+rand()%10,4,14+rand()%5,12,1200,10);
drop("远古骷髅5");
break;
}
if(!dead){
say("你的意识渐渐模糊...",100);
getch();
return;
}else{
map[x][y]='0';
if(maxhealth-health>0){
cout<<"你原地休息片刻,恢复了10%的生命!"<<endl;
health+=min(maxhealth/10,maxhealth-health);
getch();
}
}
break;
case 3:
cout<<"你遇见了远古蜘蛛!"<<endl;
getch();
switch(hard){
case 1:
fight("远古蜘蛛",20,6+rand()%3,0,-12+rand()%4,4,8+rand()%4,2,300,2);