Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var Champions = new Schema({
- _id: ObjectId,
- Champion name: String,
- Lane Type: [String],
- Counters: [{
- lane: String,
- Countered by: String,
- Counter rate: Number
- }],
- Synergies: [{
- lane: String,
- Countered by: String,
- Counter rate: Number
- }]
- });
- Przykład:
- _id: e96fae10e2f0042a4d00478,
- Champion name: "Brand",
- Lane Type: ["Middle", "Support"],
- Counters: [{
- lane: "Middle",
- Countered by: "Cho'Gath",
- Counter rate: 90 %
- }, {
- lane: "Middle",
- Countered by: "Aatrox",
- Counter rate: 80 %
- }, {
- lane: "Support",
- Countered by: "Nautilus",
- Counter rate: 90 %
- }, {
- lane: "Support",
- Countered by: "Soraka",
- Counter rate: 90 %
- },],
- Synergies: [{
- lane: "Middle",
- Countered by: "Amumu",
- Counter rate: 90 %
- }, {
- lane: "Support",
- Countered by: "Ashe",
- Counter rate: 80 %
- }
Advertisement
Add Comment
Please, Sign In to add comment