74 lines
2.0 KiB
Java
74 lines
2.0 KiB
Java
/*
|
|
This file is part of the OdinMS Maple Story Server
|
|
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
|
Matthias Butz <matze@odinms.de>
|
|
Jan Christian Meyer <vimes@odinms.de>
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation version 3 as published by
|
|
the Free Software Foundation. You may not use, modify or distribute
|
|
this program under any other version of the GNU Affero General Public
|
|
License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package server;
|
|
|
|
import client.inventory.Item;
|
|
import java.util.Calendar;
|
|
|
|
/**
|
|
*
|
|
* @author Traitor
|
|
*/
|
|
public class MTSItemInfo {
|
|
private int price;
|
|
private Item item;
|
|
private String seller;
|
|
private int id;
|
|
private int year, month, day = 1;
|
|
|
|
public MTSItemInfo(Item item, int price, int id, int cid, String seller, String date) {
|
|
this.item = item;
|
|
this.price = price;
|
|
this.seller = seller;
|
|
this.id = id;
|
|
this.year = Integer.parseInt(date.substring(0, 4));
|
|
this.month = Integer.parseInt(date.substring(5, 7));
|
|
this.day = Integer.parseInt(date.substring(8, 10));
|
|
}
|
|
|
|
public Item getItem() {
|
|
return item;
|
|
}
|
|
|
|
public int getPrice() {
|
|
return price;
|
|
}
|
|
|
|
public int getTaxes() {
|
|
return 100 + price / 10;
|
|
}
|
|
|
|
public int getID() {
|
|
return id;
|
|
}
|
|
|
|
public long getEndingDate() {
|
|
Calendar now = Calendar.getInstance();
|
|
now.set(year, month - 1, day);
|
|
return now.getTimeInMillis();
|
|
}
|
|
|
|
public String getSeller() {
|
|
return seller;
|
|
}
|
|
}
|