This repository has been archived by the owner on Dec 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #52 from skuzow/develop
v1.0.0
- Loading branch information
Showing
31 changed files
with
1,947 additions
and
449 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,16 @@ | ||
# myth-arena | ||
# ⚔️ Myth Arena | ||
|
||
[![license](https://img.shields.io/github/license/legendnightt/myth-arena.svg)](https://github.com/legendnightt/myth-arena/blob/master/LICENSE) | ||
[![license](https://img.shields.io/github/license/skuzow/myth-arena.svg)](https://github.com/skuzow/myth-arena/blob/master/LICENSE) | ||
|
||
⚔ Fight arena game where players have their own myth creatures, mp final project. | ||
Fight arena game where players have their own myth creatures, MP final project. | ||
|
||
## Collaborators | ||
|
||
- AC Group | ||
## 👤 Collaborators | ||
|
||
| **Name** | **Github Username** | | ||
|:-----------------------------:|:-------------------:| | ||
| Alejandro Porras Torrecilla | legendnightt | | ||
| Alejandro Porras Torrecilla | skuzow | | ||
| Gledrian Gutierrez Regala | gutche | | ||
| Ignacio Caniculo Dominguez | nachocaniculo | | ||
| Pablo Antolín Martínez | Pbantolin12 | | ||
|
||
## Applied Methodologies | ||
## ♻️ Applied Methodologies | ||
|
||
We have applied different methodologies during the project like, SCRUM to organize work with [JIRA](https://myth-arena.atlassian.net/jira/software/projects/MYT/boards/1/roadmap) tool in this case, and about technical aspect, we have been using [gitFlow](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow) workflow for organizing branches and commits in general. | ||
We have applied different methodologies during the project, SCRUM to organize work with [JIRA](https://myth-arena.atlassian.net/jira/software/projects/MYT/boards/1/roadmap) tool in this case, and about technical aspect, we have been using [gitFlow](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow) workflow for organizing branches and have standards for commits. |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package mytharena.data.character; | ||
|
||
/** | ||
* Marketable class | ||
*/ | ||
public class Marketable { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
package mytharena.data.market; | ||
|
||
import mytharena.data.character.Marketable; | ||
import mytharena.data.user.Player; | ||
|
||
import java.io.Serializable; | ||
import java.util.ArrayList; | ||
|
||
/** | ||
* Offer class implements Serializable | ||
*/ | ||
public class Offer implements Serializable { | ||
|
||
/** | ||
* Player buyer | ||
*/ | ||
private Player buyer; | ||
/** | ||
* Player seller | ||
*/ | ||
private final Player seller; | ||
/** | ||
* int Price | ||
*/ | ||
private final int price; | ||
/** | ||
* ArrayList ArrayList Marketable itemList | ||
*/ | ||
private final ArrayList<ArrayList<Marketable>> itemList; | ||
|
||
/** | ||
* Offer class constructor | ||
* @param seller Player seller | ||
* @param price int Price | ||
* @param itemList ArrayList ArrayList Marketable itemList | ||
*/ | ||
public Offer(Player seller, int price, ArrayList<ArrayList<Marketable>> itemList) { | ||
this.seller = seller; | ||
this.price = price; | ||
this.itemList = itemList; | ||
} | ||
|
||
/** | ||
* Sets Player buyer | ||
* @param buyer Player buyer | ||
*/ | ||
public void setBuyer(Player buyer) { | ||
this.buyer = buyer; | ||
} | ||
|
||
/** | ||
* Gets Player buyer | ||
* @return Player buyer | ||
*/ | ||
public Player getBuyer() { | ||
return this.buyer; | ||
} | ||
|
||
/** | ||
* Gets Player seller | ||
* @return Player seller | ||
*/ | ||
public Player getSeller() { | ||
return this.seller; | ||
} | ||
|
||
/** | ||
* Gets int price | ||
* @return int price | ||
*/ | ||
public int getPrice() { | ||
return this.price; | ||
} | ||
|
||
/** | ||
* Gets ArrayList ArrayList Marketable itemList | ||
* @return ArrayList ArrayList Marketable itemList | ||
*/ | ||
public ArrayList<ArrayList<Marketable>> getItemList() { | ||
return this.itemList; | ||
} | ||
|
||
} |
Oops, something went wrong.