-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProduct.h
31 lines (27 loc) · 1006 Bytes
/
Product.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
// Product.h
// TudorGame
//
// Created by David Joerg on 09.01.14.
// Copyright (c) 2014 David Joerg. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface Product : NSObject
@property(nonatomic, copy) NSNumber *EANCode;
@property(nonatomic,copy) NSString *EANType;
@property(nonatomic, copy) NSNumber *wikiFoodID;
@property(nonatomic,copy) NSString *name;
@property(nonatomic,copy) NSNumber *atk;
@property(nonatomic,copy) NSNumber *hp;
@property(nonatomic,copy) NSNumber *def;
@property(nonatomic,copy) NSNumber *spellValue;
@property(nonatomic,copy) NSString *spelltype;
@property(nonatomic, copy) NSNumber *spellCard;
@property(nonatomic, copy) NSNumber *position;
@property(nonatomic, copy) NSNumber *oldPosition;
@property(nonatomic, copy) NSNumber *isInDefensePosition;
@property(nonatomic, copy) NSString *country;
@property(nonatomic, copy) NSArray *ingredients;
@property(nonatomic, copy) NSSet *nutritives;
@property(nonatomic, retain) NSArray *sortedNutritives;
@end